-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.52 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Weather</title>
</head>
<body>
<div class="container">
<div class="search-container">
<input type="text" id="location-input" placeholder="city name">
<button class="search-btn">
<img width="20px" src="images/search.png" alt="search icon">
<!-- "https://www.flaticon.com/free-icons/search" Search icons created by Pixel perfect - Flaticon -->
</button>
<button class="location-btn">
<img width="20px" src="images/pin.png" alt="location pin">
<!-- "https://www.flaticon.com/free-icons/pin" Pin icons created by Those Icons - Flaticon -->
</button>
</div>
<div class="error">
</div>
<div class="info-section">
<div>
<h1 id="location">Chennai</h1>
<h2 id="temp">32</h2>
<p id="condition">Sunny</p>
<p id="humidity">Humidity: 100%</p>
<p id="wind">Wind: 10kph</p>
</div>
<div class="weather-icon">
<img width="100px" id="condition-icon" src="//cdn.weatherapi.com/weather/64x64/night/116.png" alt="weather icon">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>