-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.17 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
<!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">
<script src="weather.js" defer></script>
<title>Weather</title>
</head>
<body>
<div class="container">
<div class="search">
<input type="text" placeholder="Search weather.." id="userInput">
<button id="searchBtn"><svg stroke="currentColor" fill="none" stroke-width="2" viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" height="1.8em" width="1.8em" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg></button>
</div>
<h1 class="city"></h1>
<div class="box">
<h2 class="celcius">celcius</h2>
<div class="flex">
<img class="weatherImg">
<div class="description"></div>
</div>
<div class="humidity">humidity</div>
<div class="wind"></div>
</div>
</div>
</body>
</html>