This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
353 lines (353 loc) · 16.6 KB
/
test.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Agency - Free Bootstrap Theme By Bootstrapious.com</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<!-- Lightbox-->
<link rel="stylesheet" href="vendor/lightbox2/css/lightbox.min.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="css/style.aimlvt.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="css/custom.css">
<!-- Leaflet CSS - For the map-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.4.0/leaflet.css">
<!-- Favicon-->
<link rel="shortcut icon" href="favicon.png">
<!-- Tweaks for older IEs--><!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
</head>
<body>
<div class="container py-5">
<h1>Bootstrap(ious) 4 Boilerplate</h1>
<p>This is a sample content.</p>
<div class="jumbotron">
<h1>Kitchen Sink</h1>
<p>A quick preview of everything Bootstrap has to offer.</p>
<p><a href="#" class="btn btn-primary btn-large">Learn more »</a> <a href="#" class="btn btn-outline-primary btn-large">Learn more »</a></p>
</div>
<div class="row">
<div class="col-lg-6">
<div id="headings" class="card mb-4">
<div class="card-header">Headings</div>
<div class="card-body">
<h1 class="page-header">Page Header<small>With Small Text</small></h1>
<h1>This is an h1 heading</h1>
<h2>This is an h2 heading</h2>
<h3>This is an h3 heading</h3>
<h4>This is an h4 heading</h4>
<h5>This is an h5 heading</h5>
<h6>This is an h6 heading</h6>
</div>
</div>
<div id="tables" class="card mb-4">
<div class="card-header">Tables</div>
<div class="card-body">
<table class="table table-hover">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Tables</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Michael</td>
<td>Are formatted like this</td>
</tr>
<tr>
<td>2</td>
<td>Lucille</td>
<td>Do you like them?</td>
</tr>
<tr class="success">
<td>3</td>
<td>Success</td>
<td></td>
</tr>
<tr class="danger">
<td>4</td>
<td>Danger</td>
<td></td>
</tr>
<tr class="warning">
<td>5</td>
<td>Warning</td>
<td></td>
</tr>
<tr class="active">
<td>6</td>
<td>Active</td>
<td></td>
</tr>
</tbody>
</table>
<table class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Tables</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Michael</td>
<td>This one is bordered and condensed</td>
</tr>
<tr>
<td>2</td>
<td>Lucille</td>
<td>Do you still like it?</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-lg-6">
<div id="content-formatting" class="card mb-4">
<div class="card-header">Content Formatting</div>
<div class="card-body">
<p class="lead">This is a lead paragraph.</p>
<p>This is an <b>ordinary paragraph</b> that is <i>long enough</i> to wrap to
<u>multiple lines</u> so that you can see how the line spacing looks.
</p>
<p class="text-muted">Muted color paragraph.</p>
<p class="text-warning">Warning color paragraph.</p>
<p class="text-danger">Danger color paragraph.</p>
<p class="text-info">Info color paragraph.</p>
<p class="text-primary">Primary color paragraph.</p>
<nav aria-label="...">
<ul class="pagination">
<li class="page-item disabled"><span class="page-link">Previous</span></li>
<li class="page-item"><a href="#" class="page-link">1</a></li>
<li class="page-item active"><span class="page-link">2<span class="sr-only">(current)</span></span></li>
<li class="page-item"><a href="#" class="page-link">3</a></li>
<li class="page-item"><a href="#" class="page-link">Next</a></li>
</ul>
</nav>
<p><small>This is text in a <code>small</code> wrapper. <abbr title="No Big Deal">NBD</abbr>, right?</small></p>
<hr>
<address><strong>Twitter, Inc.</strong><br> 795 Folsom Ave, Suite 600<br> San Francisco, CA 94107<br><abbr title="Phone">P:</abbr> (123) 456-7890</address>
<address class="col-6"><strong>Full Name</strong><br><a href="mailto:#">first.last@example.com</a></address>
<hr>
<blockquote>Here's what a blockquote looks like in Bootstrap.<small>Use <code>small</code> to identify the source.</small></blockquote>
<hr>
<div class="row">
<div class="col-xs-6">
<ul>
<li>Normal Unordered List</li>
<li>Can Also Work
<ul>
<li>With Nested Children</li>
</ul>
</li>
<li>Adds Bullets to Page</li>
</ul>
</div>
<div class="col-xs-6">
<ol>
<li>Normal Ordered List</li>
<li>Can Also Work
<ol>
<li>With Nested Children</li>
</ol>
</li>
<li>Adds Bullets to Page</li>
</ol>
</div>
</div>
<hr>
<pre>\nfunction preFormatting() { // looks like this; var something = somethingElse; return true;} </pre>
</div>
</div>
</div>
</div>
<div id="forms" class="card mb-4">
<div class="card-header">Forms</div>
<div class="card-body">
<form>
<fieldset>
<legend>Legend</legend>
<div class="form-group">
<label for="exampleInputEmail">Email address</label>
<input id="exampleInputEmail" type="text" placeholder="Enter email" class="form-control">
</div>
<div class="form-group">
<label for="exampleInputPassword">Password</label>
<input id="exampleInputPassword" type="password" placeholder="Password" class="form-control">
</div>
<div class="form-check form-group">
<input id="checkbox-1" type="checkbox" class="form-check-input">
<label for="checkbox-1" class="form-check-label">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</fieldset>
</form>
<hr class="my-5">
<form class="form-inline">
<input type="text" placeholder="Email" class="form-control mb-2 mr-sm-2">
<label for="inlineFormInputGroupUsername2" class="sr-only">Username</label>
<div class="input-group mb-2 mr-sm-2">
<div class="input-group-prepend">
<div class="input-group-text">@</div>
</div>
<input id="inlineFormInputGroupUsername2" type="text" class="form-control">
</div>
<div class="form-check mb-2 mr-sm-2">
<input id="inlineFormCheck" type="checkbox" class="form-check-input">
<label for="inlineFormCheck" class="form-check-label">Remember me</label>
</div>
<button type="submit" class="btn btn-primary mb-2">Submit</button>
</form>
<hr class="my-5">
<h4 class="mb-5">Horizontal form</h4>
<form>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input id="inputEmail3" type="email" placeholder="Email" class="form-control">
</div>
</div>
<div class="form-group row">
<label for="inputPassword3" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input id="inputPassword3" type="password" placeholder="Password" class="form-control">
</div>
</div>
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-2 pt-0">Radios</legend>
<div class="col-sm-10">
<div class="form-check">
<input id="gridRadios1" type="radio" name="gridRadios" value="option1" checked="" class="form-check-input">
<label for="gridRadios1" class="form-check-label">First radio</label>
</div>
<div class="form-check">
<input id="gridRadios2" type="radio" name="gridRadios" value="option2" class="form-check-input">
<label for="gridRadios2" class="form-check-label">Second radio</label>
</div>
<div class="form-check disabled">
<input id="gridRadios3" type="radio" name="gridRadios" value="option3" disabled="" class="form-check-input">
<label for="gridRadios3" class="form-check-label">Third disabled radio</label>
</div>
</div>
</div>
</fieldset>
<div class="form-group row">
<div class="col-sm-2">Checkbox</div>
<div class="col-sm-10">
<div class="form-check">
<input id="gridCheck1" type="checkbox" class="form-check-input">
<label for="gridCheck1" class="form-check-label">Example checkbox</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-2">Custom Checkbox</div>
<div class="col-sm-10">
<div class="custom-control custom-checkbox">
<input id="customCheck1" type="checkbox" class="custom-control-input">
<label for="customCheck1" class="custom-control-label">Check this custom checkbox</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-2">Custom Radio</div>
<div class="col-sm-10">
<div class="custom-control custom-radio">
<input id="customRadio1" type="radio" name="customRadio" class="custom-control-input">
<label for="customRadio1" class="custom-control-label">Toggle this custom radio</label>
</div>
<div class="custom-control custom-radio">
<input id="customRadio2" type="radio" name="customRadio" class="custom-control-input">
<label for="customRadio2" class="custom-control-label">Or toggle this other custom radio</label>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Sign in</button>
</div>
</div>
</form>
</div>
</div>
<div id="buttons" class="card mb-4">
<div class="card-header">Buttons</div>
<div class="card-body">
<p>
<button type="button" class="btn btn-lg btn-secondary">Default Lg</button>
<button type="button" class="btn btn-lg btn-primary">Primary</button>
<button type="button" class="btn btn-lg btn-success">Success</button>
<button type="button" class="btn btn-lg btn-info">Info</button>
<button type="button" class="btn btn-lg btn-warning">Warning</button>
<button type="button" class="btn btn-lg btn-danger">Danger</button>
<button type="button" class="btn btn-lg btn-link">Link</button>
</p>
<p>
<button type="button" class="btn btn-secondary">Default </button>
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
</p>
<p>
<button type="button" class="btn btn-sm btn-secondary">Default Sm</button>
<button type="button" class="btn btn-sm btn-primary">Primary</button>
<button type="button" class="btn btn-sm btn-success">Success</button>
<button type="button" class="btn btn-sm btn-info">Info</button>
<button type="button" class="btn btn-sm btn-warning">Warning</button>
<button type="button" class="btn btn-sm btn-danger">Danger</button>
<button type="button" class="btn btn-sm btn-link">Link</button>
</p>
</div>
</div>
<div class="card">
<div class="card-header">Button dropdown</div>
<div class="card-body">
<div class="dropdown">
<button id="dropdownMenuButton" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-secondary dropdown-toggle">Dropdown button</button>
<div aria-labelledby="dropdownMenuButton" class="dropdown-menu"><a href="#" class="dropdown-item">Action</a><a href="#" class="dropdown-item">Another action</a><a href="#" class="dropdown-item">Something else here</a></div>
</div>
</div>
</div>
</div>
<footer class="py-4">
<div class="container">
<div class="row">
<div class="col-lg-6 text-center text-lg-left">
<p class="mb-0 text-gray">© 2019 Your name/company goes here</p>
</div>
<div class="col-lg-6 text-center text-lg-right">
<p class="mb-0 text-gray">© Template by Bootstrapious — <a href="https://bootstrapious.com/" class="text-gray">Bootstrap Templates</a></p>
</div>
</div>
</div>
</footer>
<!-- JavaScript files-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/lightbox2/js/lightbox.min.js"></script>
<script src="vendor/smooth-scroll/smooth-scroll.polyfills.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.4.0/leaflet.js"> </script>
<script src="js/front.js"></script>
<!-- FontAwesome CSS - loading as last, so it doesn't block rendering-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</body>
</html>