-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmore.html
More file actions
54 lines (45 loc) · 1.29 KB
/
more.html
File metadata and controls
54 lines (45 loc) · 1.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<meta charset="%UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Australian Weather</title>
</head>
<body>
<script type="module" src="./more.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js">
</script>
<link rel="stylesheet" href="style.css">
<div id="top-box">
<h1>Australian Non-governmental Weather</h1>
<!-- <h1 id="Melbourne">Melbourne</h1> -->
<nav class="city-nav">
<button class="city-btn" id="more">Back</button>
</nav>
</div>
<hr>
<!-- <div id="feels-div">
<h2 id="feels2">You are valued.</h2>
</div> -->
<h1 id="placeholder2">Beautiful cities, often forgotten.</h1>
<div id="idasdasd">
</div>
<div id="more-box">
<div class="row">
<button class="city-btn">Perth</button>
<button class="city-btn">Cairns</button>
<button class="city-btn">Townsville</button>
<button class="city-btn">Darwin</button>
</div>
<div class="row">
<button class="city-btn">Katherine</button>
<button class="city-btn">Hobart</button>
<button class="city-btn">Horsham</button>
<button class="city-btn">Gold Coast</button>
</div>
<div class="row">
<button class="city-btn" id="back">Back</button>
</div>
</div>
</body>
</html>