-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.18 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.18 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
<!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="css/style.css">
<link rel="stylesheet" href="css/weather-icons.min.css">
<link rel="stylesheet" href="css/weather-icons-wind.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<title>Weather Widget</title>
</head>
<body>
<div class="weather-widget">
<h2 class="location" id="location">-------</h2>
<h2 class="time" id="time">-------</h2>
<div class="weather-icon">
<i id="weather-icon"></i>
<h2 id="weather-condition">-------</h2>
</div>
<div class="other-data">
<i class="wi wi-strong-wind"></i>
<h2 id="wind">-------</h2>
<i class="wi wi-raindrops"></i>
<h2 id="precipitation">-------</h2>
<i class="wi wi-day-sunny"></i>
<h2 id="sunlight">-------</h2>
</div>
<h1 class="temperature" id="temperature">-------°F</h1>
</div>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/config.js"></script>
<script src="js/script.js"></script>
</body>
</html>