-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (37 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Example Blog</title>
<link rel="alternate" type="application/rss+xml" title="Dagbladet.no - forsida" href="http://example.com/rss/" >
<link rel="stylesheet" href="css/master.css" type="text/css">
</head>
<body>
<header>
<h1>Example.com</h1>
<p>Insert Smart Byline.</p>
</header>
<nav>
<ul>
<li><a href="/">Blog</a></li>
<li><a href="/about">About</a></li>
<li><a href="/sitemap">Sitemap</a></li>
</ul>
</nav>
<section>
<article>
<header>
<h2>Title for my blog Post</h2>
</header>
<section>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</section>
<footer>
<!-- HTML MICRODATA-->
<p itemprop="author">Author: <span itemprop="name">Example Authorson</span></p>
</footer>
</article>
</section>
<script src="http://lesscss.googlecode.com/files/less-1.0.18.min.js"></script>
</body>
</html>