forked from Technigo/project-weather-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (46 loc) · 1.27 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
43
44
45
46
47
<!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="./style.css">
<title>My weather app</title>
</head>
<body>
<header>
<nav>
<!-- <input type="text" placeholder="City">
--> </nav>
<img class="todays-icon" id="todays-icon"></img>
<div class = "temperature">
<p class="t" id="nowsTemperature">T</p>
<p class="celcius">°C</p>
</div>
<h2 class="location" id="location">city</h2>
<h4 class= "description" id="weatherDescription">Description</h4>
<div class="sunrise-sunset">
<div>
<label >sunrise</label>
<h3 id="sunrise">Sunrise</h3>
</div>
<div>
<label >sunset</label>
<h3 id="sunset">Sunset</h3>
</div>
</div>
</header>
<!-- button -->
<button class="container-btn" id="containerBtn">
<div class="arrow" id="arrow"></div>
</button>
<div class="background-circle" id="backgroundCircle"></div>
<!-- weather forecast goes here -->
<main id="forecast">
</main>
<footer>
<a href="https://github.com/vidalhuix">By Arnau Vidal Huix</a>
<img src="./src/assets/technigo-logo.svg" alt="logo">
</footer>
<script src="./script.js"></script>
</body>
</html>