-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 2.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>PA</title>
</head>
<script>
window.onload= function(){
let txtArea = document.querySelector("textarea");
txtArea.focus();
}
</script>
<body>
<section class="section_1 wd-50">
<div class="cli-container">
<div class="cli-head">
<span class="dot"></span><span class="dot"></span><span class="dot"></span>
</div>
<textarea cols="0" rows="0" style="height: 0; width:0;"></textarea>
<div class="cli-body">
<span class="location-txt">$ abhi_7 ~/abhi1god
</span>
<div class="cli-commands blinker"></div>
</div>
</div>
</section>
<section class="section_2 wd-50">
<div class="heading-content">
<div class="weather-container">
<div class="weather-today">
<div class="temp-info">
<span class="bold">--------</span
><span class="bold temp_now">--</span>
</div>
<img src="temperature.png" alt="" />
</div>
<div class="weather-future">
<span>--</span> <span>--</span><span> --</span>
</div>
</div>
</div>
<div class="pip-on-div">
PIP Mode is On
</div>
<div class="wrapper">
<div class="speaking_"><span>Active Mode</span></div>
<div class="query_content">At your service</div>
</div>
</div>
</div>
</section>
<script type="module" src="./src/main.js" async></script>
<!-- <script type="module" src="./src/clicmd.js"></script> -->
<script type="module" src="./src/cli.js"></script>
<script type="module" src="./src/pip.js"></script>
</body>
</html>