-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.19 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.19 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
<!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" />
<title>Weather API</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="location">
<h1 class="location-timezone">----</h1>
<canvas id="icon1" class="icon" width="128" height="128"></canvas>
</div>
<div class="temp">
<div class="temp-display">
<h2 class="temp-value">-</h2>
<span> °C</span>
</div>
<div class="temp-description">-</div>
</div>
<div class="activity">
<button type="button" class="btn btn-primary">
Activity Suggestion
</button>
<div class="activity"></div>
</div>
</div>
<script src="main.js"></script>
<script src="skycons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>