-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaustralia.html
71 lines (66 loc) · 2.27 KB
/
australia.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./styles/main.css">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<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>Australia</title>
</head>
<body class="aus">
<header>
<p class="logo">Super Saturnians</p>
<ul class="nav">
<li><a href="/index.html">Home</a></li>
<li><a class="active" href="/australia.html">Australia</a></li>
<li><a href="/iceland.html">Iceland</a></li>
<li><a href="/italy.html">Italy</a></li>
<li><a href="/japan.html">Japan</a></li>
</ul>
<h1>Australia</h1>
</header>
<main>
<div class="country_image">
<img src="images/ausSkyline.jpg" alt="Australian Landscape View">
</div>
<p class="headline">There's nothing like Australia!</p>
<section class="parent">
<div class="cities">
<h3>Cities of Interest</h3>
<ul>
<li>Sydney</li>
<li>Melbourne</li>
<li>Perth</li>
<li>Adelaide</li>
<li>Brisbane</li>
<li>Gold Coast</li>
</ul>
</div>
<div class="landmarks">
<h3>Landmarks of Interest</h3>
<ul>
<li>Sydney Opera House</li>
<li>Uluru</li>
<li>Heart Reef</li>
<li>Port Arthur</li>
<li>Kakadu</li>
<li>Kangaroo Island</li>
</ul>
</div>
<div class="citizens">
<h3>Famous Citizens</h3>
<ul>
<li>Steve Irwin</li>
<li>Heath Ledger</li>
<li>Hugh Jackman</li>
<li>Ben Simmons</li>
<li>Keith Urban</li>
<li>Margot Robbie</li>
</ul>
</div>
</section>
</main>
<footer>© Super Saturnians 2021</footer>
</body>
</html>