-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="search">
<input class="searchBox" type="text" id="city_name" name="city_name" placeholder="input a city name">
<button class="button" type="submit"><img id="button" src="icons8-search-50.png" alt="button Icon"></button>
</div>
<div class="hov city">
<h1 class="cityName">City Name</h1>
</div>
<div class="hov main">
<div class="temp">
<img id="sunny" src="cloudy.png" alt="">
</div>
<div class="temparature">
<h2 class="Temp">temparature</h2>
<h3 class="condition">condition</h3>
</div>
</div>
<div class="others">
<div class="humair">
<div class="hov humidity">
<img src="humidity.png" alt="humidity">
<h3 class="Humidity">humidity</h3>
</div>
<div class="hov air_flow">
<img src="air-flow.png" alt="air-flow">
<h3 class="windSpeed">air speed</h3>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>