-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
44 lines (41 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Browser jQuery examples</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>Browser jQuery examples
</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="btn-group">
<button id="home-btn" type="button" class="btn btn-default">Home</button>
<button id="oldest-clients-btn" type="button" class="btn btn-default">Oldest clients</button>
<button id="best-clients-btn" type="button" class="btn btn-default">Best clients</button>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">Panel heading</div>
<div class="panel-body">Panel body</div>
</div>
</div>
<div class="col-md-6">
<div class="well">
You can see the example output on the left of this message when the browser resolution is >= 992px or above this message when the browser resolution is < 992px </div>
</div>
</div>
</div>
<script src="public/app.js"></script>
</body>
</html>