-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.07 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Abhi-Weather App</h1>
<div class="search-box">
<input type="search" placeholder="Enter location" id="search">
<button id="btn">Search</button>
</div>
<div class="weather-card" id="weather">
<!-- <div class="image"><img src="https://static.vecteezy.com/system/resources/previews/001/500/512/non_2x/cloudy-weather-icon-free-vector.jpg" alt=""></div>
<div class="location">New York</div>
<div class="temperature">25°C</div>
<div class="condition">Sunny</div>
<div class="details">
<div class="humidity">Humidity: 70%</div>
<div class="wind-speed">Wind Speed: 10 km/h</div>
</div> -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>