-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 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
<!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" href="style.css" />
</head>
<body>
<!-- SECTION -->
<section class="section">
<!-- WEATHER CARD -->
<div class="card">
<!-- SEARCH BAR -->
<div class="search">
<input id="input" type="text" placeholder="enter city name" />
<button id="btn"><img src="images\search.png" alt="" /></button>
</div>
<div class="error">Enter valid city Name</div>
<!-- SEARCH BAR -->
<!-- wEATHER DATA -->
<div class="weather">
<img src="images/clouds.png" id="weather-img" class="weather-img" />
<h3 id="Weather-data">Mist</h3>
<h1 id="temp" class="temp">25°C</h1>
<h2 id="city" class="city">Thorrur</h2>
<div class="details">
<div class="col">
<img src="images/humidity.png" class="Humidity-img" />
<div class="humidity">
<h3 id="humidity">50%</h3>
<h4>humidity</h4>
</div>
</div>
<div class="col">
<img src="images/wind.png" class="windspeed-img" />
<div class="windspeed">
<h3 id="windspeed">13km/hr</h3>
<h4>windspeed</h4>
</div>
</div>
</div>
</div>
<!-- wEATHER DATA -->
</div>
<!-- WEATHER CARD -->
</section>
<!-- SECTION -->
<script rel="script" src="main.js"></script>
</body>
</html>