-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.37 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
<!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="style.css">
<title>Weather Forecast</title>
</head>
<body>
<div class="container">
<div class="location">
<input type="text" placeholder="Search Location" id="city" >
<button class="search">
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 16 16" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M10.442 10.442a1 1 0 011.415 0l3.85 3.85a1 1 0 01-1.414 1.415l-3.85-3.85a1 1 0 010-1.415z" clip-rule="evenodd"></path><path fill-rule="evenodd" d="M6.5 12a5.5 5.5 0 100-11 5.5 5.5 0 000 11zM13 6.5a6.5 6.5 0 11-13 0 6.5 6.5 0 0113 0z" clip-rule="evenodd"></path>
</svg>
</button>
</div>
<h2>Weather in Lucknow</h2>
<div class="temperature"><div class="temperature-degree">14</div><div class="degree">°C</div></div>
<div class="description">
<img class="icon" src="http://openweathermap.org/img/wn/[email protected]"></img>
<div class="temperature-description">cloudy day</div>
</div><br>
<div class="humidity">Humidity : 34%</div><br>
<div class="wind">Wind Speed : 6.5 km/hr</div><br>
</div>
<script src="script.js"></script>
</body>
</html>