-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
182 lines (160 loc) · 7.87 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html> <!-- Specify doctype -->
<html lang="en"> <!-- Specify language -->
<!--
The <head> section tells the browser *about* your website content (e.g. how to style it).
Nothing in here is seen by users except title / description.
-->
<head>
<meta charset="utf-8"><!-- Sepcificy character encoding -->
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- For older IE browsers -->
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- For mobile devices -->
<!-- The above 3 meta tags *must* come first in the <head>; any other head content must come *after* these tags -->
<!-- Title and description seen in browser tab/window, and in search engines or auto-generated link summaries. -->
<title>Bootstrap Example</title>
<meta name="description" content="Demo website for the 'Build a Webpage with Bootstrap' community class at Startup Institute Boston">
<!-- Bootstrap Core CSS (Required for Bootstrap) and Bootstrap Theme (Optional)
Find other themes at bootswatch.com or create your own at bootstrap-live-customizer.com -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://bootswatch.com/paper/bootstrap.min.css">
<!-- Custom Styles (Optional) Custom styles go inside a style.css file, with a link at the bottom of the <head>. -->
<link href="style.css" rel="stylesheet">
</head>
<!--
The <body> section contains ALL of your website content!
Everything in here is seen by users (except comments / javascript).
-->
<body>
<!-- ==================================================
▼ PUT ALL CONTENT *BELOW* HERE ▼
=================================================== -->
<!-- Cover section -->
<div class="cover-wrapper">
<div class="cover-wrapper-inner">
<div class="cover-container">
<div class="inner cover">
<h1 class="cover-heading">Creating webpages since 1983</h1>
<p class="lead">This is where you can put some more quippy text. Or actually helpful text works, too. But it's less fun. Your choice, my friend, so choose wisely.</p>
<p class="lead">
<a href="#about" class="btn btn-lg btn-default">Tell Me More</a>
</p>
</div>
</div>
</div>
</div><!-- /cover-wrapper -->
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Andrew Borstein</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- About section -->
<div class="container" id="about">
<h1>About</h1>
<div class="well">
<div class="row">
<div class="col-md-6">
<h3>Here's some stuff</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas sed diam eget risus varius blandit sit amet non magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. </p>
</div>
<div class="col-md-6">
<h3>And some more</h3>
<p>Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur.</p>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<h4>Past</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas sed diam eget risus varius blandit sit amet non magna.</p>
</div>
<div class="col-sm-4">
<h4>Present</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</p>
</div>
<div class="col-sm-4">
<h4>Future</h4>
<p>Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p>
</div>
</div>
</div>
</div><!-- /container for About -->
<!-- Portfolio section -->
<div class="container" id="portfolio">
<h1>Portfolio</h1>
<div class="row">
<div class="col-sm-6 col-md-3">
<div class="thumbnail">
<img src="http://i.imgur.com/hvbAqEb.jpg" class="img-responsive" alt="A placeholder image from unsplash.it">
<div class="caption">
<h3>Dogs Welcome</h3>
<p>Meet McGruff the crime dog. A tuff pup with a heart of gold.</p>
<button class="btn btn-primary" role="button">Ruff Ruff</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="thumbnail">
<img src="http://i.imgur.com/FkmskFf.jpg" class="img-responsive" alt="A placeholder image from unsplash.it">
<div class="caption">
<h3>Behind a Lens</h3>
<p>Sometimes I take photos of things, and share theme.</p>
<button class="btn btn-primary" role="button">Say Cheese</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="thumbnail">
<img src="http://i.imgur.com/5GcQ0wv.jpg" class="img-responsive" alt="A placeholder image from unsplash.it">
<div class="caption">
<h3>My Hometown</h3>
<p>Chitown is my town. They call it the cindy witty. Or not.</p>
<button class="btn btn-primary" role="button">See More</button>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="thumbnail">
<img src="http://i.imgur.com/TxQTWVV.jpg" class="img-responsive" alt="A placeholder image from unsplash.it">
<div class="caption">
<h3>Coffe Fueled</h3>
<p>Want to grab coffee sometime? Let's chat — this one's on me. </p>
<button class="btn btn-primary" role="button">Java Me</button>
</div>
</div>
</div>
</div>
</div><!-- /container for Portfolio -->
<!-- Contact section -->
<div class="container" id="contact">
<h1>Contact</h1>
<div class="alert alert-success text-center" role="alert">
<h2>Got a really cool web project to work on?</h2>
<button type="button" class="btn btn-default btn-lg">
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span> [email protected]
</button>
</div>
</div><!-- /container for Contact -->
<!-- ==================================================
▲ PUT ALL CONTENT *ABOVE* HERE ▲
=================================================== -->
<!-- jQuery (Required for Bootstrap) and Bootstrap Core JS (Required for Bootstrap)
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>