-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body id="body">
<div class="layover"></div>
<div class="container3">
<button class="close"><b>X</b></button>
<img src="image/warning.png">
<h1>City Not Found</h1>
</div>
<div class="container1">
<div class="container2">
<input class="input" placeholder="Enter City" type="text">
<img id="img"width="30px" src="image/search.png">
</div>
<div class="weather">
<img class="mainweatherimg" src="#">
<h1 class="comment">null</h1>
<p class="temperature"><b class="temp">null</b></p>
<div class="bottom">
<div class="flex1">
<img class="weatherimage"src="image/weather/humidity.png">
<div class="content">
<p>Humidity</p>
<p class="humval">null</p>
</div>
</div>
<div class="flex2">
<img src="image/weather/wind.png">
<div class="content">
<p>Wind</p>
<p class="winval">null</p>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>