forked from Technigo/project-weather-app
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.76 KB
/
index.html
File metadata and controls
49 lines (43 loc) · 1.76 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
<!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">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;300;400;500;600&family=Poppins:wght@100;200;300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Weather app</title>
</head>
<body>
<section id="weatherContainer" class="weather-container">
<div id="dailyWeather" class="dailyWeather">
<nav class="menu">
<button class="burger-btn">
<img class="burger" src="./images/list.svg" width="50px">
</button>
<ul class="sideMenu" id="sideMenu">
<form id="searchForm">
<input class="input-location" id="inputLocation" placeholder="Pick a destination ✈️">
</form>
<div class="closeMenu"><img src="./images/x-circle.svg" width="50px" alt=""></div>
</ul>
</nav>
<div class="weather-data" id="weatherData"></div>
</div>
</section>
<div id="weeklyWeather" class="weeklyWeather">
</div>
<footer class="footer">
<div>
<p class="project">project weather app</p>
<p class="technigo">technigo web development bootcamp spring 2022</p>
<p class="foxes">team foxes 🦊</p>
<p class="people">emma lindell | linnea frisk | justine zwiazek | ida näslund | camilla hallberg</p>
</div>
</footer>
</body>
<script src="./script.js"></script>
</html>