-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.79 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
<!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, maximum-scale=1, user-scalable=no">
<title>Weather App</title>
<meta name="description" content="This web app let users see their local weather. Depending on the weather, the website change icons, colors and data shown.">
<meta name="keywords" content="weather, local weather app, weather api, freecodecamp, free code camp, front end development, app, web app">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/7.0.0/normalize.css">
<link rel="stylesheet" href="https://websygen.github.io/owfont/css/owfont-regular.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Arvo:400,700">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="container">
<h1>Local Weather App</h1>
<p class="city"></p>
<p class="weather">
<span class="temperature"></span> |
<span class="sky"></span>
</p>
<button id="toggleTemp">Get Fahrenheit temperature</button>
<i id="weatherIcon"></i>
<p class="description"></p>
<div class="bottom">
<p class="bottom-text">Made by
<a href="https://www.vivekmaru.com/" target="_blank">Vivek Maru</a> -
<a href="https://github.com/vivekmaru/Weather-App" target="_blank">GitHub</a>
<br> Powered by
<a href="https://openweathermap.org/" target="_blank">Open Weather Map</a>
</p>
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>