This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
forked from nss-day-cohort-47/hello-world-super-saturnians
-
Notifications
You must be signed in to change notification settings - Fork 0
/
japan.html
68 lines (67 loc) · 2.32 KB
/
japan.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
<!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>Japan</title>
</head>
<body>
<header>
<p class="logo">Super Saturnians</p>
<ul class="nav">
<li><a href="/index.html">Home</a></li>
<li><a href="/australia.html">Australia</a></li>
<li><a href="/iceland.html">Iceland</a></li>
<li><a href="/italy.html">Italy</a></li>
<li><a class="active" href="/japan.html">Japan</a></li>
</ul>
<h1>Japan</h1>
</header>
<main>
<div class="country_image">
<img src="images/giantsizegundam.jpg" alt="gundam">
</div>
<p class="headline">Endless opportunity awaits in glorious Japan!
</p>
<section class="parent">
<div class="cities">
<h3>Cities of Interest</h3>
<ul>
<li>Tokyo</li>
<li>Osaka</li>
<li>Kyoto</li>
<li>Sapporo</li>
<li>Yokohama</li>
<li>Hiroshima</li>
</ul>
</div>
<div class="landmarks">
<h3>Landmarks of Interest</h3>
<ul>
<li>Shibuya Crossing</li>
<li>Arashiyama Bamboo Grove</li>
<li>Itsukushima Shrine</li>
<li>Dotonbori</li>
<li>Himeji Castle</li>
<li>Mount Fuji</li>
</ul>
</div>
<div class="citizens">
<h3>Famous Citizens</h3>
<ul>
<li>Takeshi Kitano</li>
<li>Akira Kurosawa</li>
<li>Hayao Miyazaki</li>
<li>Yoko Ono</li>
<li>Toshiro Mifune</li>
<li>Marie Kondo</li>
</ul>
</div>
</section>
</main>
<footer>©Super Saturnians 2021</footer>
</body>
</html>