forked from mpkerry/bootstrap_wksp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
290 lines (227 loc) · 13.4 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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap WKSP - Links to exercises</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<style>.hider { font-size: .65em }</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Bootstrap Workshop</h1>
<h2>Instructions, Resources, Tools, and Links to exercises</h2>
</div>
<h3>Created for ABCD bootstrap wksp 3/19/2015</h3>
<h4>Exercises to familiarize you with the essentials that Bootstrap has to offer.</h4>
<h3><a href="#tools" data-toggle="collapse" aria-expanded="true" aria-controls="tools" class="btn btn-default btn-sm hider">Show/Hide</a> Tools/Setup</h3>
<div id="tools" class="collapse">
<p>
All the files required for this workshop are available on GitHub here:
<a href="https://github.com/michaelkerry/bootstrap_wksp" target="_blank">https://github.com/michaelkerry/bootstrap_wksp</a>
</p>
<p>If you are *not* already comfortable with GitHub, the easiest thing to do is to download the zipped directory of all files
<a href="https://github.com/michaelkerry/bootstrap_wksp/archive/gh-pages.zip" target="_blank">here</a>. You can then edit them
with your favored IDE/Text Editor.
</p>
<p>If you *are* already comfortable with GitHub, and have a preferred IDE/Text Editor, please feel free to
<a href="https://github.com/michaelkerry/bootstrap_wksp#fork-destination-box" target="_blank">fork the project</a>
and clone it to your local machine.</p>
<h4>Set up new GitHub account and use Aptana 3 Studio</h4>
<p>
If you would like to try something new, and you do not already have one, please register for a GitHub account:
<a href="https://github.com/" target="_blank">Github</a>
</p>
<p>Once you have one, please follow the <a href="https://github.com/settings/ssh">instructions to set up ssh keys</a> on your working machine and share them with GitHub,
so that you can fork and clone the project to your working machine.
</p>
<p>Download and install <a href="http://www.aptana.com/products/studio3/download.html" target="_blank">Aptana Studio 3</a>,
which IMHO has easy-to-use Git integration already built in. </p>
<p>If you are using Aptana 3 studio, you can fork and clone the project from GitHub by clicking on the 'File' menubar, then selecting 'Import',
then opening the 'Git' directory, then selecting 'Fork GitHub Repository'. You will then need to enter 'michaelkerry' as the owner,
'bootstrap_wksp' for the repository, and then select a valid file path for the destination (in the current workspace is best) </p>
</div>
<h3><a href="#instructions" data-toggle="collapse" aria-expanded="true" aria-controls="instructions" class="btn btn-default btn-sm hider">Show/Hide</a> Instructions</h3>
<div id="instructions" class="collapse">
<p>The basic idea is to work through the exercises in directory order, starting with 01-04 in ascending order, then picking through 05-08 in whatever order appeals to you. If you have time to also work through the more challenging exercises in 09 during the 90 minute workshop, well, then, you work quickly. :)</p>
<ul>
<li>Sections 01-04 are mostly about CSS: <a href="http://getbootstrap.com/css/" target="_blank">http://getbootstrap.com/css/</a></li>
<li>Sections 05-08 refer more to the javascript portion of Bootstrap, although you can accomplish much functionality with CSS and other attributes: <a href="http://getbootstrap.com/javascript/" target="_blank">http://getbootstrap.com/javascript/</a></li>
<li>Files are in pairs; all '*_DONE.html' files contain one possible solution; there are, of course, many others. The other html files are the starting points. All exercises can be completed with CSS classes alone, but can also instead be completed with bootstrap.js - or some combination of the 2. The solutions provided are almost exclusively CSS solutions.</li>
<li>Open the index file in the root of the project in a web browser so that you can see the starting and end states of the exercises (this will give you a visual reference as you work), then open the first project (e.g., '01_grid_breakpoints/2evenCols.html') in your favorite text editor/IDE.</li>
<li>You may also find it useful to consult the index page (click on the section header) and/or the 00_README.txt files in each section, as they contain information and useful links.</li>
</ul>
</div>
<h3><a href="#links" data-toggle="collapse" aria-expanded="true" aria-controls="links" class="btn btn-default btn-sm hider">Show/Hide</a> Links of potential interest</h3>
<div id="links" class="collapse">
<ul>
<li>
Discussion of best responsive web frameworks
<ul>
<li>
<a href="http://www.awwwards.com/what-are-frameworks-22-best-responsive-css-frameworks-for-web-design.html" target="_blank">
http://www.awwwards.com/what-are-frameworks-22-best-responsive-css-frameworks-for-web-design.html
</a>
</li>
</ul>
</li>
<li>
Google trends comparing Bootstrap, Skeleton, Foundation, Yaml frameworks
<ul>
<li>
<a href="http://www.google.com/trends/explore#q=bootstrap%20framework%2C%20skeleton%20framework%2C%20Yaml%20framework%2C%20Foundation%20framework&cmpt=q&tz=" target="_blank">
http://www.google.com/trends/explore#q=bootstrap%20framework%2C%20skeleton%20framework%2C%20Yaml%20framework%2C%20Foundation%20framework&cmpt=q&tz=
</a>
</li>
</ul>
</li>
<li>
Bootstrap website
<ul>
<li>
<a href="http://getbootstrap.com/getting-started/" target="_blank">
http://getbootstrap.com/getting-started/
</a>
</li>
</ul>
</li>
<li>
Excellent tutorial for basics
<ul>
<li>
<a href="http://www.w3schools.com/bootstrap/default.asp" target="_blank">
http://www.w3schools.com/bootstrap/default.asp
</a>
</li>
</ul>
</li>
<li>
Reponsive Design Patterns:
<ul>
<li>
<a href="http://bradfrost.github.io/this-is-responsive/patterns.html" target="_blank">
http://bradfrost.github.io/this-is-responsive/patterns.html
</a>
</li>
<li>
<a href="http://designshack.net/articles/css/5-really-useful-responsive-web-design-patterns/" target="_blank">
http://designshack.net/articles/css/5-really-useful-responsive-web-design-patterns/
</a>
</li>
</ul>
</li>
</ul>
</div>
<h3>Happy coding!</h3>
<div class="row">
<div class="col-sm-4"><h3><a href="00_resources/index.html" target="_blank">00 resources</a> </h3>
<ul class="list-unstyled">
<li><a href="./00_resources/cdn_css.txt" target="_blank">cdn_css.txt</a></li>
<li><a href="./00_resources/cdn_js.txt" target="_blank">cdn_js.txt</a></li>
<li><a href="./00_resources/web_links.txt" target="_blank">web_links.txt</a></li>
</ul>
</div>
<div class="col-sm-4"><h3><a href="01_grid_breakpoints/index.html" target="_blank">01 grid breakpoints</a> </h3>
<ul class="list-unstyled">
<li><a href="./01_grid_breakpoints/2evenCols.html" target="_blank">2evenCols.html</a></li>
<li><a href="./01_grid_breakpoints/2evenCols_DONE.html" target="_blank">2evenCols_DONE.html</a></li>
<li><a href="./01_grid_breakpoints/2unevenCols.html" target="_blank">2unevenCols.html</a></li>
<li><a href="./01_grid_breakpoints/2unevenCols_DONE.html" target="_blank">2unevenCols_DONE.html</a></li>
<li><a href="./01_grid_breakpoints/3evenCols.html" target="_blank">3evenCols.html</a></li>
<li><a href="./01_grid_breakpoints/3evenCols_DONE.html" target="_blank">3evenCols_DONE.html</a></li>
<li><a href="./01_grid_breakpoints/3unevenCols.html" target="_blank">3unevenCols.html</a></li>
<li><a href="./01_grid_breakpoints/3unevenCols_DONE.html" target="_blank">3unevenCols_DONE.html</a></li>
<li><a href="./01_grid_breakpoints/header2evenCols.html" target="_blank">header2evenCols.html</a></li>
<li><a href="./01_grid_breakpoints/header3evenCols.html" target="_blank">header3evenCols.html</a></li>
</ul>
</div>
<div class="col-sm-4"><h3><a href="02_forms/index.html" target="_blank">02 forms</a> </h3>
<ul class="list-unstyled">
<li><a href="./02_forms/form.html" target="_blank">form.html</a></li>
<li><a href="./02_forms/form.js" target="_blank">form.js</a></li>
<li><a href="./02_forms/form_DONE.html" target="_blank">form_DONE.html</a></li>
<li><a href="./02_forms/inline_form.html" target="_blank">inline_form.html</a></li>
<li><a href="./02_forms/inline_form_DONE.html" target="_blank">inline_form_DONE.html</a></li>
</ul>
</div>
</div><!-- end of row -->
<div class="row">
<div class="col-sm-4"><h3><a href="03_images/index.html" target="_blank">03 images</a> </h3>
<ul class="list-unstyled">
<li><a href="./03_images/glyphicons.html" target="_blank">glyphicons.html</a></li>
<li><a href="./03_images/glyphicons_DONE.html" target="_blank">glyphicons_DONE.html</a></li>
<li><a href="./03_images/image.html" target="_blank">image.html</a></li>
<li><a href="./03_images/image_DONE.html" target="_blank">image_DONE.html</a></li>
</ul>
</div>
<div class="col-sm-4"><h3><a href="04_navbar/index.html" target="_blank">04 navbar</a> </h3>
<ul class="list-unstyled">
<li><a href="./04_navbar/defaultNavbar.html" target="_blank">defaultNavbar.html</a></li>
<li><a href="./04_navbar/defaultNavbar_DONE.html" target="_blank">defaultNavbar_DONE.html</a></li>
<li><a href="./04_navbar/defaultNavbar.css" target="_blank">defaultNavbar.css</a></li>
<li><a href="./04_navbar/fixedTop.html" target="_blank">fixedTop.html</a></li>
<li><a href="./04_navbar/fixedTop_DONE.html" target="_blank">fixedTop_DONE.html</a></li>
<li><a href="./04_navbar/fixedTop.css" target="_blank">fixedTop.css</a></li>
<li><a href="./04_navbar/staticTop.html" target="_blank">staticTop.html</a></li>
<li><a href="./04_navbar/staticTop_DONE.html" target="_blank">staticTop_DONE.html</a></li>
<li><a href="./04_navbar/staticTop.css" target="_blank">staticTop.css</a></li>
</ul>
</div>
<div class="col-sm-4"><h3><a href="05_modal/index.html" target="_blank">05 modal</a> </h3>
<ul class="list-unstyled">
<li><a href="./05_modal/modal.html" target="_blank">modal.html</a></li>
<li><a href="./05_modal/modal_DONE.html" target="_blank">modal_DONE.html</a></li>
<li><a href="./05_modal/multi_modal.html" target="_blank">multi_modal.html</a></li>
<li><a href="./05_modal/multi_modal_DONE.html" target="_blank">multi_modal_DONE.html</a></li>
<li><a href="./05_modal/multi_modal.js" target="_blank">multi_modal.js</a></li>
</ul>
</div>
</div><!-- end of row -->
<div class="row">
<div class="col-sm-4"><h3><a href="06_accordion/index.html" target="_blank">06 accordion</a> </h3>
<ul class="list-unstyled">
<li><a href="./06_accordion/accordion.html" target="_blank">accordion.html</a></li>
<li><a href="./06_accordion/accordion_DONE.html" target="_blank">accordion_DONE.html</a></li>
</ul>
</div>
<div class="col-sm-4"><h3><a href="07_tables/index.html" target="_blank">07 tables</a> </h3>
<ul class="list-unstyled">
<li><a href="./07_tables/basic_table.html" target="_blank">basic_table.html</a></li>
<li><a href="./07_tables/basic_table_DONE.html" target="_blank">basic_table_DONE.html</a></li>
<li><a href="./07_tables/table_hide_columns.html" target="_blank">table_hide_columns.html</a></li>
<li><a href="./07_tables/table_hide_columns_DONE.html" target="_blank">table_hide_columns_DONE.html</a></li>
</ul>
</div>
<div class="col-sm-4"><h3><a href="08_tabs/index.html" target="_blank">08 tabs</a> </h3>
<ul class="list-unstyled">
<li><a href="./08_tabs/tabs.html" target="_blank">tabs.html</a></li>
<li><a href="./08_tabs/tabs_DONE.html" target="_blank">tabs_DONE.html</a></li>
</ul>
</div>
</div><!-- end of row -->
<div class="row">
<div class="col-sm-4"><h3><a href="09_more/index.html" target="_blank">09 more</a> </h3>
<ul class="list-unstyled">
<li><a href="./09_more/carousel.css" target="_blank">carousel.css</a></li>
<li><a href="./09_more/Carousel.html" target="_blank">Carousel.html</a></li>
<li><a href="./09_more/Carousel_DONE.html" target="_blank">Carousel_DONE.html</a></li>
<li><a href="./09_more/offCanvas.html" target="_blank">offCanvas.html</a></li>
<li><a href="./09_more/offcanvas.js" target="_blank">offcanvas.js</a></li>
<li><a href="./09_more/offCanvas_DONE.html" target="_blank">offCanvas_DONE.html</a></li>
<li><a href="./09_more/sticky-footer-navbar.css" target="_blank">sticky-footer-navbar.css</a></li>
<li><a href="./09_more/stickyFooterNavbar.html" target="_blank">stickyFooterNavbar.html</a></li>
<li><a href="./09_more/stickyFooterNavbar_DONE.html" target="_blank">stickyFooterNavbar_DONE.html</a></li>
</ul>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Latest compiled and minified JavaScript (jQuery is also required, and must preceed bootstrap!) -->
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</body>
</html>