-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
28 lines (27 loc) · 718 Bytes
/
Copy pathlayout.html
File metadata and controls
28 lines (27 loc) · 718 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Layout</title>
<link rel="stylesheet" type="text/css" href="layout.css">
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" src="js.js"></script>
</head>
<body>
<div id="pagetop">
<div id="logo">logo</div>
<div id="menu">
<ul class="nav nav-tabs nav-justified navigationButtons">
<li class="active"><a href="#">Homepage</a></li>
<li><a href="#">Cars</a></li>
<li><a href="#">Specifications</a></li>
<li><a href="#">Discount</a></li>
</ul>
</div>
</div>
<div class="container">
<div id="content">
</div>
</div>
<div id="footer">footer</div>
</body>
</html>