-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (82 loc) · 3.19 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
<link rel="stylesheet" href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="nav">
<div class="container">
<ul class="pull-left">
<li><a href="#">Bags</a></li>
<li><a href="#">Browse</a></li>
</ul>
<ul class="pull-right">
<li><a href="#">Sign Up</a></li>
<li><a href="#">Log In</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>Find the perfect bag for you.</h1>
<p>Rent and swap bags with people in over 34,000 cities and 192 countries.</p>
<a href="#">Learn More</a>
</div>
</div>
<div class="neighborhood-guides">
<div class="container">
<h2>Trendy Bag Guides</h2>
<p>Not sure which bag to get? We've created bag guides for the top tier brands.</p>
<div class="row">
<div class="col-md-4">
<div class="thumbnail">
<img src="http://cdn3.purseblog.com/images/2014/01/Hermes-Birkin-Bags.jpg">
</div>
<div class="thumbnail">
<img src="http://www.laprendo.com/data/1/Folder/Bags/Chloe-Paraty-Medium-Shoulder-Bag-in-Icy-Mint-8HS891-043-63P-41701-zoom.jpg">
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img src="http://thefashiontag.files.wordpress.com/2012/04/london-celine-bag-phil-oh.jpg">
</div>
<div class="thumbnail">
<img src="http://backseatstylers.com/wp-content/uploads/2012/01/3.1-Phillip-Lim-Pashli-Bag.jpg">
</div>
</div>
<div class="col-md-4">
<div class="thumbnail">
<img src="http://2.bp.blogspot.com/-1KwLMXgN7fQ/UwconyEK49I/AAAAAAAAHyk/8-ksB73nxsE/s1600/opi+nail+polishes+-+madame+figaro-+zerouv+singlasses.jpg">
</div>
</div>
</div>
<div class="learn-more">
<div class="container">
<div class="row">
<div class="col-md-4">
<div>
<div>
<h3>Bag Swap</h3>
<p>From Birkin and Kelly to the latest Pierre Hardy: stay unique in style by looking for the latest bags to swap locally.</p>
<p><a href="#">See how to swap bags on Baglady</a></p>
</div>
<div class="col-md-4">
<div>
<h3>Hosting</h3>
<p>Renting out your unused bags could pay your bills or fund your next dream purchase.</p>
<p><a href="#">Learn more about bag hosting</a></p>
</div>
<div class="col-md-4">
<div>
<h3>Trust and Safety</h3>
<p>From Verified ID to our worldwide customer support team, we've got your back.</p>
<p><a href="#">Learn about trust at Baglady</a></p>
</div>
</div>
</div>
</div>
</body>
</html>