-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml.html
39 lines (29 loc) · 1.25 KB
/
html.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Breckenridge Weather</title>
<link rel="stylesheet" href="css.css">
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="css.css" defer></script>
<script src="js.js" defer></script>
</head>
<body>
<div class="card">
<h1>Check today's weather</h1>
<div class="refresh-button">
<button id='refresh' type="button">Click to refresh today's weather in Breckenridge, CO</button>
<button id="Detroit" type="button">Click for today's weather in Detroit, MI</button>
</div>
<div class="weather">
<h3 class ="temp-high">Today's high: --- </h3>
<h3 class="temp-low">Today's low: ---</h3>
<h3 class="precipitation">Chance of precipitation: --</h3>
<h3 class="sunrise">Sunrise: ---</h3>
<h3 class="sunset">Sunset: ---</h3>
<h1 class="city">---</h1>
<img src="null">
</div>
</div>
</body>