forked from TYLERSELBY/bootstrap-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (132 loc) · 5.68 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Example Templates for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/docs.css" rel="stylesheet">
<!-- Analytics -->
<script>
</script>
</head>
<body>
<div class="jumbotron">
<div class="container">
<span class="glyphicon glyphicon-ok"></span>
<h1>Examples for Bootstrap</h1>
<p>Gallery of useful examples to easily get started with and extend Bootstrap's layout, components, and more.</p>
<a href="https://github.com/twbs/bootstrap-examples/archive/master.zip" class="btn btn-outline btn-large" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download 1.0.0']);">Download from GitHub</a>
<ul class="jumbotron-links">
<li>
<a href="http://github.com/twbs/bootstrap-examples" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'GitHub project']);">GitHub project</a>
</li>
<li>
<a href="http://getbootstrap.com" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'Bootstrap']);">Bootstrap</a>
</li>
<li>
<a href="http://expo.getbootstrap.com" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'Expo']);">Bootstrap Expo</a>
</li>
</ul>
</div>
</div>
<div class="container gallery">
<div class="row">
<div class="col-lg-4">
<a class="thumbnail" href="starter-template/index.html" target="_blank">
<img src="screenshots/starter.png" alt="">
</a>
<h3>Starter template</h3>
<p>A barebones HTML page with Bootstrap's CSS and JavaScript included.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="grid/index.html" target="_blank">
<img src="screenshots/grid.png" alt="">
</a>
<h3>Basic grid layouts</h3>
<p>Simple grid layouts to familiarize you with using the Bootstrap grid system.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="jumbotron/index.html" target="_blank">
<img src="screenshots/marketing.png" alt="">
</a>
<h3>Basic marketing site</h3>
<p>Features a jumbotron for primary message and three supporting elements.</p>
</div>
</div><!-- /.row -->
<div class="row">
<div class="col-lg-4">
<a class="thumbnail" href="jumbotron-narrow/index.html" target="_blank">
<img src="screenshots/jumbotron-narrow.png" alt="">
</a>
<h3>Narrow marketing</h3>
<p>Slim, lightweight marketing template for small projects or teams.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="justified-nav/index.html" target="_blank">
<img src="screenshots/justified-nav.png" alt="">
</a>
<h3>Justified nav</h3>
<p>Marketing page with equal-width navigation links in a modified navbar.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="signin/index.html" target="_blank">
<img src="screenshots/signin.png" alt="">
</a>
<h3>Sign in</h3>
<p>Barebones sign in form with custom, larger form controls and a flexible layout.</p>
</div>
</div><!-- /.row -->
<div class="row">
<div class="col-lg-4">
<a class="thumbnail" href="sticky-footer/index.html" target="_blank">
<img src="screenshots/sticky-footer.png" alt="">
</a>
<h3>Sticky footer</h3>
<p>Pin a fixed-height footer to the bottom of the user's viewport.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="sticky-footer-navbar/index.html" target="_blank">
<img src="screenshots/sticky-footer-navbar.png" alt="">
</a>
<h3>Sticky footer w/ navbar</h3>
<p>Add a fixed navbar to the default sticky footer template.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="carousel/index.html" target="_blank">
<img src="screenshots/carousel.png" alt="">
</a>
<h3>Carousel jumbotron</h3>
<p>An interactive riff on the basic marketing site featuring a prominent carousel.</p>
</div>
</div><!-- /.row -->
<div class="row">
<div class="col-lg-4">
<a class="thumbnail" href="navbar/index.html" target="_blank">
<img src="screenshots/navbar.png" alt="">
</a>
<h3>Navbar</h3>
<p>Basic template for showcasing how the navbar works.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="navbar-static-top/index.html" target="_blank">
<img src="screenshots/navbar-static-top.png" alt="">
</a>
<h3>Static top navbar</h3>
<p>Basic template for showcasing the static navbar variation.</p>
</div>
<div class="col-lg-4">
<a class="thumbnail" href="navbar-fixed-top/index.html" target="_blank">
<img src="screenshots/navbar-fixed-top.png" alt="">
</a>
<h3>Fixed top navbar</h3>
<p>Basic template for showcasing the fixed navbar variation.</p>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
</body>
</html>