-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 2.23 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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Food Blog</title>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<h1><a href="index.html">The Foodist</a></h1>
<h2>Food blog</h2>
<nav class="toplocations">
<a href="#">NYC</a>
<a href="#">Paris</a>
<a href="#">London</a>
<a href="#">Madrid</a>
<a href="#">Rome</a>
<a href="#">Beijing</a>
</nav>
</header>
<article>
<h3>11/12/13</h3>
<h2><a href="#">Food of NYC</a></h2>
<img src="img/nyc.jpg">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc porttitor justo nulla, a volutpat eros luctus a. Duis varius diam dolor, sed feugiat eros suscipit vel. Fusce feugiat ut mi nec mollis. Praesent tristique, nibh eget eleifend sollicitudin, erat enim vulputate nisl, a porttitor ipsum turpis in nisi. Duis sit amet magna in erat porta eleifend. Nullam ante leo, dictum quis ornare a, dignissim a libero. Integer dictum mauris a neque vehicula tristique. Cras nec tortor non tortor gravida vestibulum</p>
<h4><a href="#">Next</a></h4>
</article>
<article>
<h3>11/11/13</h3>
<h2><a href="#">Food of Paris</a></h2>
<img src="img/paris.jpg">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc porttitor justo nulla, a volutpat eros luctus a. Duis varius diam dolor, sed feugiat eros suscipit vel. Fusce feugiat ut mi nec mollis. Praesent tristique, nibh eget eleifend sollicitudin, erat enim vulputate nisl, a porttitor ipsum turpis in nisi. Duis sit amet magna in erat porta eleifend. Nullam ante leo, dictum quis ornare a, dignissim a libero. Integer dictum mauris a neque vehicula tristique. Cras nec tortor non tortor gravida vestibulum</p>
<h4><a href="#">Next</a></h4>
</article>
<footer>
<nav class="bottomlocations">
<a href="index.html">Home</a>
<span>|</span>
<a href="#">NYC</a>
<span>|</span>
<a href="#">Paris</a>
<span>|</span>
<a href="#">London</a>
<span>|</span>
<a href="#">Madrid</a>
<span>|</span>
<a href="#">Rome</a>
<span>|</span>
<a href="#">Beijing</a>
</nav>
<p>© Food Bloggers, Inc.</p>
</footer>
</body>
</html>