-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./src/icons8-clouds-16.png">
<link rel="stylesheet" href="style.css">
<script type="module" src="index.js"></script>
<title>Weather App</title>
</head>
<body>
<div class="weather-app">
<div class="weather-info">
<div class="date">
<span></span>
<span class="cityName"></span>
</div>
<div class="weather-main">
<div class="info-box">
<img class="image info" src="" alt="" />
<span class="description info"></span>
</div>
<span class="temp info"></span>
</div>
<div class="weather-secondary">
<div class="weather-details">
<div class="feeling-part info-box">
<p>Feels</p>
<p class="feeling info"></p>
</div>
<div class="wind info-box">
<p>Wind</p>
<p class="speed info"></p>
</div>
<div class="humidity-part info-box">
<p>Humidity</p>
<p class="humidity info"></p>
</div>
</div>
<div class="time">
<div class="time-box">
<p>Sunrise:</p>
<p class="sunrise info"></p>
</div>
<div class="time-box">
<p>Sunset:</p>
<p class="sunset info"></p>
</div>
</div>
</div>
</div>
<div class="location">
<input id="input" type="text" placeholder="Enter city"/>
<button id="search">Search</button>
</div>
</div>
</body>
</html>