-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (58 loc) · 2.02 KB
/
index.html
File metadata and controls
65 lines (58 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
<!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>
<!--Default header. Not to be displayed for the moment, might add a Javascript function to make show at the top as user scrolls down.
<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>
<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='home'>
<div id='hometext'>
<h1>The Dev Journey of <br>a Wandering Anemone</h1>
<h2>Te Haerenga Kaihanga o <br>he Hūmenga</h2>
<a href="about.html">About</a>
<a href="wandering_anemone.html">Wandering Anemone</a>
<a href="blog/blog.html">Blog</a>
<a href="projects.html">Projects</a>
</div>
<img id='homeimg' src="images/homebtn - Copie.JPG" alt="Picture of a beautiful wandering anemone">
<!--
<h1>Kia ora Taiao! (Hello World!)</h1>
+ content Wandering Anemone?
-->
</div>
<!--Footer-->
<footer>
<nav>
<a href="contact.html">Contact</a>
<a href="sitemap.html">Site Map</a>
</nav>
</footer>
</body>
</html>