-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (62 loc) · 2.13 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">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>WeatherApp</title>
</head>
<body>
<div class="container">
<div class="card">
<h1>Weather</h1>
<input type="text" id="search_input" placeholder="Search your city">
<p id="notfound"></p>
<ul>
<a>
<li>
<div class="title">City</div>
<h3 id="city"></h3>
</li>
</a>
<a>
<li>
<div class="title">Temperature</div>
<div id="temperature"></div>
</li>
</a>
<a>
<li>
<div class="title">Humidity</div>
<div id="humidity"></div>
</li>
</a>
<a>
<li id="description-box">
<div class="title">Description</div>
<div id="description"></div>
</li>
</a>
<a>
<li>
<div class="title">Wind speed</div>
<div id="windspeed"></div>
</li>
</a>
<a>
<li>
<div class="title">Cloudiness</div>
<div id="cloudiness"></div>
</li>
</a>
</ul>
<div class="buttons">
<button class="btn" type="button"><a id="first-btn" href="#!">Clear</a></button>
<button class="btn" id="second-btn" type="button">Search</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>