-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.html
63 lines (62 loc) · 2.22 KB
/
sitemap.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
<!DOCTYPE html>
<html>
<head>
<title>Follow the Wandering Anemone!</title>
<meta charset="utf-8">
<meta name="keywords" content="DevAcademy, EDA, HTML, CSS, Javascript, Web developer">
<meta name="description" content="Follow the journey of a wandering sea anemone on her way to becoming a web developer">
<link media="screen" rel="stylesheet" href="styles/screen.css">
<link media="print" rel="stylesheet" href="styles/print.css">
<link href="https://fonts.googleapis.com/css?family=Architects+Daughter&display=swap" rel="stylesheet">
<!--add favicon-->
</head>
<body>
<!--Header-->
<header>
<a id="homebtn" href="index.html">
<h1>The Dev Journey of a Wandering Anemone</h1>
<h2>Te Haerenga Kaihanga o he Hūmenga</h2>
</a>
<!--Menu-->
<nav>
<ul>
<li class="dropdown">
<a class="dropbtn" href="about.html">About</a>
<div class="dropdown-content">
<a href="wandering_anemone.html">Wandering Anemone</a>
</div>
</li>
<li><a href="blog/blog.html">Blog</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
</header>
<!--Content-->
<div id='content'>
<main>
<ul class="sitemap">
<li><a href="about.html">About</a></li>
<ul class="sitemap2">
<li><a href="wandering_anemone.html">Wandering Anemone</a></li>
</ul>
<li><a href="blog/blog.html">Blog</a></li>
<ul class="sitemap2">
<li><a href="blog/sprint1_technical.html">Sprint 1 Technical - The Story of Te Houtaewa</a></li>
<li><a href="blog/sprint2_technical.html">Sprint 2 Technical - Display:inline vs display:inline-block</a></li>
<li><a href="blog/sprint1-cultural.html">Sprint 1 Cultural - Values & Strengths</a></li>
<li><a href="blog/sprint2-cultural.html">Sprint 2 Cultural - Learning plan</a></li>
</ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="sitemap.html">Site Map</a></li>
</ul>
</main>
</div>
<footer>
<nav>
<a href="contact.html">Contact</a>
<a href="sitemap.html">Site Map</a>
</nav>
</footer>
</body>
</html>