-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
executable file
·62 lines (55 loc) · 2.04 KB
/
blog.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Luke Ewer - Last Word</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/frame.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/colours1.css">
<style>
.page-title h1 {
line-height: 100%;
}
</style>
</head>
<body>
<header>
<div class="logo"><a href="http://lukeewer.co.uk"><h1>&</h1></a></div>
<nav>
<ol>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Work</a></li>
<li><a href="blog.html" class="current-page">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ol>
</nav>
</header>
<main>
<section class="blog-posts">
<header class="page-title">
<h2>Last Word</h2>
<h5>Because the only place on the Internet your might get it is your own blog</h5>
</header>
<article class="blog-post">
<header>
<h3>First Words</h3>
</header>
<p>
I am currently working on my new website, which I'll be using as a showcase for my previous work, a place to blog from and a place to practice any new skills I'm learning. If you're reading this, you're already looking at it.
</p>
<p>
If you come back in a little while, you'll see a new blog post where I'll be going over the design and development descisions that went into making this site, and how I've implemented various bits of front-end and back-end — in case you're interested in the 'how and why' of the final product.
</p>
<p>
<a href="blog.html"> Read more…</a>
</p>
</article>
</section>
</main>
<footer>
<h5>© 2016 Luke Ewer</h5>
</footer>
</body>
</html>