-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplewhite.html
42 lines (42 loc) · 1.31 KB
/
simplewhite.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="wrap">
<div id="header">
<div id="hero">
<h2>Hero</h2>
<h4>Just doing what heroes do.</h4>
</div>
<div id="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Pictures</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div id="body">
<div id="article">
<h3><a href="#">Title of Article</a></h3>
<p>This is my article. It really isn't much to read, but I'm feeling rather unmotivated today so I'm not sure what to write here.</p>
</div>
<div id="aside">
<h3>Blogs I follow</h3>
<ul>
<li><a href="#">Blog 1</a></li>
<li><a href="#">Blog 2</a></li>
<li><a href="#">Blog 3</a></li>
<li><a href="#">Blog 4</a></li>
</ul>
</div>
<div id="footer">
Vezzani solutions, 2013
</div>
</div>
</div>
</body>
</html>