-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<title></title>
<link rel="icon" src="">
<script charset="utf-8">
function remCalibrate() {
document.documentElement.style.fontSize = window.innerWidth/100 + 'px';
}
remCalibrate();
window.addEventListener('resize', remCalibrate, false);
</script>
<link href="stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<img src="lucas-rasmussen-logo.svg" id="logo" class="logo" alt="Lucas Rasmussen Web Design Logo" title="Lucas Rasmussen Web Design Logo" />
<nav>
<ul>
<li><a href="" >About</a></li>
<li><a href="" >Blog</a></li>
<li><a href="" >History</a></li>
<li><a href="" >Portfolio</a></li>
<li><a href="" >Tutorials</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog_post">
<header>
<img src="lucas-rasmussen-logo.svg" class="user_icon" alt="Lucas Rasmussen"/>
<div class="blog_header">
<h1>The Meaning of Life</h1>
<div>
<h2>Lucas Rasmussen</h2>
<p class="post_date"><time datetime="2013-07-25">25 August 2013</time></p>
</div>
</div>
</header>
<h3></h3>
<p>
The meaning of life may be many things. This is an interesting question. I think that there will be a very eager discussion about this.
</p>
</article>
</main>
<footer>
</footer>
</body>
</html>