-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (37 loc) · 1.17 KB
/
index.html
File metadata and controls
44 lines (37 loc) · 1.17 KB
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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="utf-8" />
<title>Three Column Layout Page</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link href='http://fonts.googleapis.com/css?family=Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- MAIN PAGE CONTAINER -->
<div id="wrapper">
<div id="header">
<a href="3col.html"><div id="logo"></div></a>
<h1>John Atten's Azure Test Site</h1>
<ul class="navigation">
<li><a href="home.html">Home</a></li>
<li><a href="Products.html">Products</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="Contact">Contact</a></li>
</ul>
</div>
<!-- Main Content Area (LEFT) -->
<div id="main_content">
<h2>This is the Main Content Area</h2>
<p>Here is some text content I added before pushing changes</p>
</div><!-- END COLUMN 1 -->
<!-- SIDEBAR (RIGHT) -->
<div id="sidebar">
<h2>Sidebar</h2>
</div><!-- END SIDEBAR -->
<!-- FOOTER PAGE BOTTOM -->
<footer id="footer">
Footer
</footer><!-- END FOOTER -->
</div><!-- END MAIN PAGE CONTAINER -->
</body>
</html>