-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Weather App</title>
</head>
<body>
<div class="container">
<h1> WEATHER DETAILS</h1>
<br>
<h2>1.Date(Day),Year</h2>
<br>
<h2>2.Temparature</h2>
<br>
<h2>3.Maximum and Minimum temperature</h2>
<br>
<h2>4.Weather Condition</h2>
</div>
<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"></div>
<div class="date" id="date"></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 id="img"></div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>