-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (25 loc) · 838 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Google Fonts Added-->
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>RaleighWeather</title>
</head>
<body>
<div class="location">
<h1 class="city-name"></h1>
</div>
<div class="temperature">
<div class="degree-section">
<h2 class="temperature-degree"></h2>
<span>°</span>
</div>
<div class="temperature-description"></div>
<p>Click the temperature to switch between Celsius & Fahrenheit.</p>
</div>
<script src="app.js"></script>
</body>
</html>