-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path09-navbar.html
More file actions
33 lines (26 loc) · 777 Bytes
/
09-navbar.html
File metadata and controls
33 lines (26 loc) · 777 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
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css"/>
<link type="text/css" rel="stylesheet" href="09-navbar.css" />
<title>North Face</title>
</head>
<body>
<div class="nav text-center">
<ul>
<li><a href="#">Women</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Accessories</a></li>
<li><a href="#">Sale</a></li>
</ul>
</div>
<div class="jumbotron">
<div class="container">
<h1>North Face</h1>
<p>Clothing for Climbers</p>
<a href="#" class="btn btn-lg btn-primary width-120px" style="margin-right:20px;">Catalog</a>
<a href="#" class="btn btn-lg btn-default width-120px">Order</a>
</div>
</div>
</body>
</html>