-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Weather App</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<script type="text/javascript" src="javascript/script.js" async></script>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/mediaqueries.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="outer-container">
<!-- Website name -->
<h1 class="title">Weather app</h1>
<div class="inner-container"><!-- This container is as high as its content -->
<!-- Location -->
<div class="location">
<h2 id="location"></h2>
</div>
<!-- Temperature -->
<div class="temperature">
<p id="temperature-level"></p>
<!-- Celsius button -->
<div class="celsius-degrees celsius-degrees-on-click" id="celsius-degrees">
<p class="degrees-symbol celsius-paragraph">C</p>
</div>
<!-- Fahrenheit button -->
<div class="fahrenheit-degrees" id="fahrenheit-degrees">
<p class="fahrenheit-paragraph">F</p>
</div>
<p id="temperature-description"></p>
</div>
</div>
</div>
</body>
</html>