-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather App</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
type="text/css"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
</head>
<body>
<div class="search_box">
<p class="heading">Weather app</p>
<p class="status">user denied geolocation</p>
<input
placeholder="Enter city name"
type="text"
autofocus
autocomplete=""
/>
<div class="or">
<hr />
<p>or</p>
</div>
<button class="btn">get device location</button>
</div>
<div class="container">
<div class="header">
<span class="material-icons back"> arrow_back </span>
<p class="">weather app</p>
</div>
<div class="body">
<img src="https://openweathermap.org/img/wn/04d@2x.png" />
<p class="temperature"></p>
<p class="update">moderate rain</p>
<p class="location"></p>
</div>
<div class="footer">
<div class="card">
<span class="material-icons"> device_thermostat </span>
<div>
<p class="feelsLike"></p>
<p class="desc">feels like</p>
</div>
</div>
<div class="card">
<span class="material-symbols-outlined"> humidity_mid </span>
<div>
<p class="humidity"></p>
<p class="desc">humidity</p>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>