-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
244 lines (211 loc) · 11 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Bootstrap Presentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Style Sheets -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.2.0/css/amelia/bootstrap.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar navbar-default" role="navigation" id="SiteNavBar">
<!-- Nav Bar Header -->
<div class="navbar-header">
<button type="button" class="navbar-toggle"
data-toggle="collapse"
data-target="#NavBarLinks">
<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="#SiteNavBar">Bootstrap Demo</a>
</div>
<!-- Nav Bar Links -->
<div class="navbar-collapse collapse" id="NavBarLinks">
<ul class="nav navbar-nav">
<li><a href="#CSS" data-toggle="tab">CSS</a></li>
<li><a href="#Components" data-toggle="tab">Components</a></li>
<li><a href="#JavaScript" data-toggle="tab">JavaScript</a></li>
<li class="active"><a href="#Customize" data-toggle="tab">Customize</a></li>
</ul>
</div>
</nav>
<!-- Main Content -->
<div class="container" id="content">
<h1>Bootstrap Demo</h1>
<div class="row">
<!-- Main Area -->
<div class="col-md-8">
<h2>Main Area</h2>
<div class="tab-content">
<section id="CSS" class="tab-pane">
<section id="GridSystem">
<h4>Grid System</h4>
<div class="row">
<div class="col-xs-4">col-xs-4</div>
<div class="col-xs-4">col-xs-4</div>
<div class="col-xs-4">col-xs-4</div>
</div>
</section>
<h4>Media Queries:</h4>
<div class="media-example"></div>
<h4>Tables</h4>
<p><b>Here's an awesome table!</b></p>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Topic</th>
<th>Presenter</th>
<th>Tags</th>
</tr>
</thead>
<tbody>
<tr>
<td>A Developer's Introduction to Kentico CMS </td>
<td>John Bubriski</td>
<td><kbd>.Net</kbd> <kbd>ASP.NET</kbd> <kbd>C#</kbd></td>
</tr>
<tr>
<td>A Primer on Visual Studio and the Amazon Web Services SDK </td>
<td>Karl Schwirz</td>
<td><kbd>.Net</kbd> <kbd>Amazon Web Services</kbd> <kbd>C#</kbd></td>
</tr>
<tr>
<td>The Story of Bing Apps: Delight Across Multiple Form Factors</td>
<td>Michael Cummings</td>
<td><kbd>.Net</kbd> <kbd>Android</kbd> <kbd>Bing API</kbd></td>
</tr>
<tr>
<td>Almost 5 Years After Going Independent</td>
<td>Jason Haley</td>
<td><kbd>Career</kbd></td>
</tr>
</tbody>
</table>
<h4>Forms</h4>
<p><b>Here's an awesome form!</b></p>
<form role="form" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="exampleInputEmail1">Email address</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail1" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword1" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword1" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default">#</button>
</div>
</div>
</form>
<h4>Buttons</h4>
<div>
<p>Anything can be (styled like) a button</p>
<button class="btn btn-default">button</button> <br />
<a class="btn btn-default">anchor</a> <br />
<p class="btn btn-default">paragraph</p> <br />
<p>Some more interesting cases:</p>
<div class="btn-group">
<a class="btn btn-xs btn-success" href="#">Approve</a>
<a class="btn btn-xs btn-danger" href="#">Deny</a>
</div><br />
<div class="btn-group">
<a class="btn btn-sm btn-success" href="#">Approve</a>
<a class="btn btn-sm btn-danger" href="#">Deny</a>
</div><br />
<div class="btn-group">
<a class="btn btn-success" href="#">Approve</a>
<a class="btn btn-danger" href="#">Deny</a>
</div>
</div>
<h4>Responsive Helpers</h4>
<div>
<b>
<p>Warning - avoid facebook</p>
<div class="visible-xs label-info">visible-xs</div>
<div class="hidden-xs label-warning">hidden-xs</div>
</b>
</div>
</section>
<section class="tab-pane" id="Components">
<h4>Icons</h4>
<p>Glyphicons vs. Font-Awesome</p>
<table class="table">
<tr>
<td>Glyphicon Syntax</td>
<td><code><span class="glyphicon glyphicon-home"></span></code></td>
</tr>
<tr>
<td>Font Awesome Syntax</td>
<td><code><span class="fa fa-home"></span></code></coce></td>
</tr>
</table>
<p>Example</p>
Home Icon: <i class="fa fa-home"></i>
</section>
<section class="tab-pane" id="JavaScript">JavaScript</section>
<section class="tab-pane active" id="Customize">
<p>Two big things:</p>
<ol>
<li>
Customize LESS:
<ul>
<li><a href="http://getbootstrap.com/customize/">http://getbootstrap.com/customize/</a></li>
</ul>
</li>
<li>
Download Theme:
<ul>
<li><a href="http://bootswatch.com/">http://bootswatch.com/</a></li>
<li><a href="http://www.bootstrapcdn.com/#bootswatch_tab">http://www.bootstrapcdn.com/#bootswatch_tab</a></li>
</ul>
</li>
</ol>
</section>
</div>
</div>
<!-- Sidebar -->
<div class="col-md-3 col-md-offset-1">
<h2>About Me</h2>
<p><b>Kyle Mitofsky</b></p>
<img src="http://i.imgur.com/o0JOmbv.jpg" class="thumbnail img-responsive" />
<ul>
<li><a href="http://www.codingeverything.com/2014/06/BootstrapPresentation.html">Blog Post on Presentation</a></li>
<li><a href="https://github.com/KyleMit/BootstrapPresentation">Github Project</a></li>
</ul>
</div>
</div>
<!-- Desktop / Mobile Footer -->
<div id="DesktopMobileFooter" class='row text-center'>
<hr />
<div class="MobileToggle">
View <a id="DesktopSite" href="#">Desktop</a> | <strong>Mobile</strong> Site
</div>
<div class="MobileToggle collapse">
View <strong>Desktop</strong> | <a id="MobileSite" href="#">Mobile</a> Site
</div>
</div>
</div>
<!-- Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>