-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>weather app</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="app-main">
<div class="searchInputBox">
<input type="text" id="input-box" class="input-box" placeholder="Enter city name... " autocomplete="off">
</div>
<div class="weather-body">
<div class="location-details">
<div class="city" id="city">kanpur</div>
<div class="date" id="date">10 june {wednesday},2020</div>
</div>
<div class="weather-status">
<div class="temp" id="temp">34°C</div>
<div class="min-max" id="min-max">32°c(min)/34°c(max)</div>
<div class="weather" id="weather">clear</div>
<div class="img"></div>
</div>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>