-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 1.45 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
<html>
<head>
<title>Home Page</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles/main.css" />
</head>
<body>
<div class="header">
<img class="logo" src="images/smile.png" />
<h1 class="title">The Alex Blog</h1>
</div>
<div class="writing">
<h1>Kia ora Taiao! (Hello World!)</h1>
</div>
<div class="links">
<p>Other pages</p>
<ul>
<li>
<a href="blog/te-houtaewa-template.html">
<p>The Story of Te Houtaewa</p>
</a>
</li>
<li>
<a href="blog/html-css.html">
<p>Margin, Border, and Padding</p>
</a>
</li>
<li>
<a href="blog/learning-plan.html">
<p>Learning Plan</p>
</a>
</li>
<li>
<a href="blog/identity-values.html">
<p>My Identity and Values</p>
</a>
</li>
<li>
<a href="blog/emotional-intelligence.html"
><p>Emotional Intelligence EQ</p></a
>
</li>
<li>
<a href="blog/javascript-dom.html"><p>Javascript Fundamentals</p></a>
</li>
<li>
<a href="blog/foundations-reflection.html">
<p>Foundation Reflections</p>
</a>
</li>
<li>
<a href="blog/problem-solving.html">
<p>Problem Solving</p>
</a>
</li>
</ul>
</div>
</body>
</html>