-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
458 lines (457 loc) · 23.7 KB
/
test.html
File metadata and controls
458 lines (457 loc) · 23.7 KB
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Multi - Multipurpose Bootstrap theme </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 rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,700">
<!-- Icon fonts-->
<link rel="stylesheet" href="css/pe-icon-7-stroke.css">
<!-- Lightbox CSS-->
<link rel="stylesheet" href="vendor/lightbox2/css/lightbox.min.css">
<!-- Leaflet CSS-->
<link rel="stylesheet" href="vendor/leaflet/leaflet.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="css/style.default.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="css/custom.css">
<!-- Favicon-->
<link rel="shortcut icon" href="img/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>
<!-- navbar-->
<header class="header">
<nav class="navbar navbar-expand-lg py-lg-0">
<div class="container"><a href="index.html" class="navbar-brand text-uppercase font-weight-bold">Multi.</a>
<button type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler navbar-toggler-right small"><span class="text-uppercase mr-2">Menu</span><i class="fas fa-bars"></i></button>
<div id="navbarSupportedContent" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto d-lg-flex align-items-lg-center">
<li class="nav-item"><a href="index.html" class="nav-link font-weight-bold text-uppercase px-lg-3 py-lg-4">Home </a>
</li>
<li class="nav-item"><a href="text.html" class="nav-link font-weight-bold text-uppercase px-lg-3 py-lg-4">Text page </a>
</li>
<li class="nav-item dropdown"><a id="navbarDropdownMenuLink" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="nav-link font-weight-bold text-uppercase px-lg-3 py-lg-4 dropdown-toggle">Dropdown</a>
<div aria-labelledby="navbarDropdownMenuLink" class="dropdown-menu mt-0"><a href="#" class="dropdown-item small text-uppercase">Dropdown item 1</a><a href="#" class="dropdown-item small text-uppercase">Dropdown item 2</a><a href="#" class="dropdown-item small text-uppercase">Dropdown item 3</a><a href="#" class="dropdown-item small text-uppercase">Dropdown item 4</a></div>
</li>
<li class="nav-item"><a href="contact.html" class="nav-link font-weight-bold text-uppercase px-lg-3 py-lg-4">Contact </a>
</li>
<li class="nav-item mt-4 mt-lg-0">
<button type="button" data-toggle="modal" data-target="#loginModal" class="btn btn-outline-primary nav-btn btn-sm"> <i class="fas fa-sign-out-alt mr-2"></i>Login </button>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div id="loginModal" tabindex="-1" role="dialog" aria-lebelledby="loginModalLabel" aria-hidden="true" class="modal fade">
<div role="document" class="modal-dialog modal-sm">
<div class="modal-content rounded-0">
<div class="modal-header">
<h5 id="loginModalLabel" class="text-uppercase modal-title m-0">Customers login</h5>
<button type="button" data-dismiss="modal" aria-label="Close" class="close"><span aria-hidden="true" class="small text-muted">×</span></button>
</div>
<div class="modal-body">
<form action="">
<div class="form-group">
<input type="email" placeholder="email" class="form-control">
</div>
<div class="form-group">
<input type="password" placeholder="password" class="form-control">
</div>
<div class="form-group text-center">
<button type="submit" class="btn btn-outline-primary nav-btn btn-sm"> <i class="fas fa-sign-out-alt mr-2"></i>Login </button>
</div>
</form>
<div class="text-center">
<p class="text-muted small">Not registered yet?</p>
<p class="small text-muted"> <a href="#" class="font-weight-bold">Register now!</a> It is easy and done in 1 minute and gives you access to special discounts and much more!</p>
</div>
</div>
</div>
</div>
</div>
<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 style="background: #eee;" class="pt-5">
<div class="container py-5">
<div class="row">
<div class="col-lg-8 col-md-6 mb-4">
<h5 class="lined lined-dark mb-3">About Multi</h5>
<p class="text-muted text-small">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus magna. Cras in mi at felis aliquet congue. Vivamus magna. Cras in mi at felis aliquet congue.</p>
<p class="text-muted text-small">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue.</p>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<h5 class="lined lined-dark mb-3">Our offices</h5>
<h6>London</h6>
<p class="text-muted mb-0 text-small">Donec eleifend</p>
<p class="text-muted mb-0 text-small">libero at sagittis</p>
<p class="text-muted mb-4 text-small">mollis + 44 2556 789 8799 </p>
<h6>Paris</h6>
<p class="text-muted mb-0 text-small">Donec eleifend</p>
<p class="text-muted mb-0 text-small">libero at sagittis</p>
<p class="text-muted mb-0 text-small">mollis + 44 2556 789 8799 </p>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<h5 class="lined lined-dark mb-3">Popular Categories</h5>
<ul class="list-unstyled">
<li><a href="#" class="footer-link text-small">Graphic design</a></li>
<li><a href="#" class="footer-link text-small">Web design</a></li>
<li><a href="#" class="footer-link text-small">Support</a></li>
<li><a href="#" class="footer-link text-small">Accounting</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 mb-4">
<h5 class="lined lined-dark mb-3">Let's be friends</h5>
<ul class="list-inline">
<li class="list-inline-item"><a href="#" class="social-link"><i class="fab fa-facebook-f"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i class="fab fa-google-plus-g"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i class="fab fa-twitter"></i></a></li>
<li class="list-inline-item"><a href="#" class="social-link"><i class="fas fa-envelope"></i></a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6">
<h5 class="lined lined-dark mb-3">News and Updates</h5>
<p class="text-muted mb-4 text-small">Sign up to get weekly portion of fresh jobs and news from us.
<form action="#">
<div class="input-group mb-3">
<input type="text" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2" class="form-control">
<div class="input-group-append">
<button id="basic-addon2" type="submit" class="input-group-text"><i class="fas fa-paper-plane"></i></button>
</div>
</div>
</form>
</p>
</div>
</div>
</div>
<div class="bg-dark py-4">
<div class="container">
<div class="row">
<div class="col-lg-6 text-center text-lg-left mb-1 mb-lg-0">
<p class="small text-gray mb-0">©2019 Best company</p>
</div>
<div class="col-lg-6 text-center text-lg-right">
<p class="small text-gray mb-0">More Templates <a href="http://www.cssmoban.com/" target="_blank" title="模板之家">模板之家</a> - Collect from <a href="http://www.cssmoban.com/" title="网页模板" target="_blank">网页模板</a></p>
</div>
</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/leaflet/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>