-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchinablog.html
37 lines (37 loc) · 1.25 KB
/
chinablog.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>
<title>Adventures in China</title>
<link rel="stylesheet" type="text/css" href="chinablog.css" />
</head>
<body>
<div id="wrap">
<div id="banner">
<div id="hero">
<h1>Adventures in China</h1>
<br />
<p>Pictures and Thoughts of my time spent in Nanjing, China</p>
</div><!-- /#hero -->
<div id="topNav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Photo Album</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div><!-- /#topNav -->
</div><!-- /#banner -->
<div id="mainContent">
<div id="leftSide">
This is going to contain my blog content.
</div><!-- /#leftSide -->
<div id="rightSide">
This is going to contain related content, such as pictures and links to travel websites.
</div><!-- /#rightSide -->
<div id="footer">
This is my footer. Copyright 2013.
</div><!-- /#footer -->
</div><!-- /#mainContent -->
</div><!-- /#wrap -->
</body>
</html>