-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (80 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
<title>Grid Template for Bootstrap</title>
<link rel="stylesheet" href="css/stylesheets/bootstrap.css" rel="stylesheet">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/stylesheets/bootstrap-ie7.css" rel="stylesheet">
<![endif]-->
<link rel="stylesheet" href="css/stylesheets/screen.css" rel="stylesheet">
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/scripts.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container color1">
<div class="row color2">
<div class="col-sm-6 color3">col-sm-6</div>
<div class="col-sm-6 color4 nph">col-sm-6</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 nph">
<button class="toggleTable">click here</button>
</div>
<!-- /.col-sm-12 -->
</div> <!-- /.row -->
<div class="row">
<div class="col-sm-6 color6 nph">
<table class="table table-bordered">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>Mark</td>
<td>Otto</td>
<td>@TwBootstrap</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<!-- /.col-sm-12 nph -->
</div>
<!-- /.row -->
</div> <!-- /.container.nile -->
</body>
</html>