-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 1.99 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 1.99 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="animation.css">
<title>Daily Weather</title>
</head>
<body>
<div class="gradient"></div>
<div class="gradient2"></div>
<div class="gradient__cold"></div>
<div class="gradient__hot"></div>
<div class="gradient__snow"></div>
<main class="main__container">
<h1 class="main__title">Daily Weather</h1>
<div class="input__container">
<input class="input__text" type="text" placeholder="Enter your city">
<button class="input__btn">
<img src="Assets/search.svg" class="input__icon">
</button>
</div>
<div class="weather__container">
<img src="Assets/cloud.svg" class="weather__icon">
<p class="weather__temp"></p>
<!--<p class="weather__city"></p>-->
<div class="weather__info">
<div class="weather__item">
<img src="Assets/humidity.svg" class="weather__img humidity">
<div class="weather__texts">
<p class="weather__humidity"></p>
<p class="weather__text--humidity">Humidity</p>
</div>
</div>
<div class="weather__item">
<img src="Assets/wind.svg" class="weather__img wind">
<div class="weather__texts">
<p class="weather__wind"></p>
<p class="weather__text--wind">Wind speed</p>
</div>
</div>
</div>
</div>
<div class="not-found__container">
<p class="not-found__title">404</p>
<p class="not-found__text">Sorry, location not found.</p>
</div>
</main>
<script src="script.js"></script>
</body>
</html>