-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 2.4 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>DelphyM's blog</title>
<link rel="stylesheet" type="text/css" href="./styles/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Macondo&display=swap" rel="stylesheet">
<!-- <meta name="viewport" content="width=450px, initial-scale=0.5" /> -->
</head>
<body>
<header>
<div id="div-0" class="container">
<nav>
<ul>
<li><a href="/" id="home">Home</a></li>
<li><a href="#" id="about">About</a></li>
<li><a href="#" id="blogs">Blogs</a>
<ul>
<li><a href="/blog/technical-blog.html" id="blog1">Technical Blog</a></li>
<li><a href="/blog/human-blog.html" id="blog2">Human Blog</a></li>
</ul>
</li>
<li><a href="#" id="contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div id="div-1" class="container">
<div id="div-2h">
<h1>Kia ora Taiao! (Hello World!)</h1>
<h2>Kia ora te Ao, ko Daniel ahau</h2>
</div>
<div id="div-2">
<p>This is the beginning of my website home page.</p>
<p>It will eventually contain a list of links to all my blogs.</p>
<p>
<ul>
<li><a href="/blog/te-houtaewa-template.html">The Story of Te Houtaewa</a></li>
<li><a href="/blog/identity-values.html">Identity and Values</a></li>
<li><a href="/blog/learning-plan.html">Learning Plan</a></li>
<li><a href="/blog/html-css.html" id="blog1">HTML & CSS</a></li>
<li><a href="#" id="blog3">Blog 3</a></li>
</ul>
</p>
<p>
It can perfectly works locally from
<a href="https://httpd.apache.org/">Apache web server</a> or via
<a href="https://vitejs.dev/">Vite</a>.
</p>
</div>
</div>
</main>
<footer>
<div class="container narrow">
<p>© 2024 DelphyM. All rights reserved. <a href="https://github.com/delphym/delphym.github.io">GitHub repo</a></p>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Updated: 2024-09-01</p>
<p>Version 0.1</p>
</div>
</footer>
</body>
</html>