-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
49 lines (45 loc) · 1.09 KB
/
blog.html
File metadata and controls
49 lines (45 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Aila Simpson</title>
<link rel="stylesheet" href="style.css">
<meta name="viewpoint" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<div class="background">
<header>
<h1>Aila Simpson</h1>
<p>Hello World - A blog about my learning projects</p>
<ul class="nav">
<li><a href="http://ailasimpson.com/">Home</a></li>
<li><a href="http://ailasimpson.com/blog.html">Blog</a></li>
<li><a href="http://ailasimpson.com/cv.html">CV</a></li>
</ul>
<hr>
</header>
<section>
<div class="post">
<h4 class="posttitle">Project 1</h4>
<h6>date posted</h6>
<p class="posttext">About the project</p>
</div>
<div class="post">
<h4 class="posttitle">Project 1</h4>
<h6>date posted</h6>
<p class="posttext">About the project</p>
</div>
<div class="post">
<h4 class="posttitle">Project 1</h4>
<h6>date posted</h6>
<p class="posttext">About the project</p>
</div>
</section>
<footer>
<hr>
<p></p>
<p>Aila Simpson 2021</p>
</footer>
</div
</body>
</html>