-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.11 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
<!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="index.js" defer></script>
<link rel="icon" href="images/favicon.png" />
<title>Weather App</title>
</head>
<body>
<div class="title">
<h4>Weather App</h4>
</div>
<div class="card">
<div class="search">
<input type="text" placeholder="Search" class="search__bar" />
<button class="search__button">
<img src="images/searchIcon.png" alt="Search" class="search__icon" />
</button>
</div>
<h2 class="location"></h2>
<h2 class="temp"></h2>
<div class="info">
<img src="" alt="Weather Condition" class="weather__icon" />
<div class="description"></div>
</div>
<div class="wind"></div>
<div class="humidity"></div>
<div class="feels_like"></div>
</div>
</body>
</html>