-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (35 loc) · 1.63 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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
<title>Weather App</title>
<link rel="icon" href="https://img.icons8.com/doodle/48/000000/apple-weather.png" />
</head>
<body>
<div class="card">
<div class="search">
<input type="text" class="search-bar" placeholder="Select a City">
<button><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-search" viewBox="0 0 16 16">
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" />
</svg></button>
</div>
<div class="weather">
<h2 class="city">Search for a City</h2>
<h1 class="temp">Temperature</h1>
<img src="" alt="" class="icon">
<div class="description">Description</div>
<div class="humidity">Humidity</div>
<div class="wind">Wind Speed</div>
</div>
</div>
</body>
</html>