-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
executable file
·223 lines (182 loc) · 7.52 KB
/
tables.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
<!doctype html>
<html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<head>
<meta charset="utf-8"><!--[if IE]> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><![endif]-->
<title>Metro Mobile HTML Template</title>
<meta content="Your meta description" name="description">
<meta content="No HTML is allowed in here." name="keywords">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" name="viewport">
<!--[if IE]><link rel="stylesheet" type="text/css" href="css/font-awesome-ie7.css"><![endif]-->
<!-- Shortcut Logos -->
<link href="images/demo_content/metroentrance1.jpg" rel="apple-touch-icon-precomposed" sizes="114x114"><!-- Home logo -->
<link href="images/demo_content/metroentrance57.jpg" rel="shortcut icon"><!-- Fav icon logo-->
<!-- /Shortcut Logos -->
<!-- Style -->
<link href='css/style.css' id='styles-css' media='all' rel='stylesheet' type='text/css'>
<!-- / Style -->
<!-- Scripts -->
<script src='http://code.jquery.com/jquery-1.8.0.min.js' type='text/javascript'></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src='js/bootstrap.min.js' type='text/javascript'></script>
<script src='js/spinner.js' type='text/javascript'></script>
<script src='js/jquery.mobile.customized.min.js' type='text/javascript'></script>
<script src='js/vendor/modernizr-2.6.1.min.js' type='text/javascript'></script>
<!-- / Scripts -->
</head>
<body>
<!-- Loading Message -->
<div class="spinnerbg">
<div id="spinner">
<span id="first" class="ball"></span>
<span id="second" class="ball"></span>
<span id="third" class="ball"></span>
</div>
</div>
<!-- /Loading Message -->
<!-- Wrapper -->
<div class="wrapper">
<!-- Scrollable -->
<div class="scrollable">
<!-- Header -->
<header>
<h1>Tables</h1>
<a href="javascript:history.back(-1)" class="back-button linkbut"></a>
<div class="line"></div>
</header>
<div class="MiddleContent">
<!-- Striped Table -->
<p><strong>Striped Table</strong></p>
<div class="dividert divider7"></div>
<table class="table table-striped table-bordered">
<tr>
<th>#</th>
<th>First Name</th>
<th> Last Name</th>
<th> Username</th>
</tr>
<tr>
<td>1</td>
<td> Filip</td>
<td> Stefansson</td>
<td> filipstefansson</td>
</tr>
<tr>
<td> 2</td>
<td> Victor</td>
<td> Meyer</td>
<td> Pudge</td>
</tr>
<tr>
<td> 3</td>
<td> Måns</td>
<td> Ketola-Backe</td>
<td> mossboll</td>
</tr>
</table>
<div class="clearfix"></div>
<!-- Bordered Table -->
<p><strong>Bordered Table</strong></p>
<div class="dividert divider7"></div>
<table class="table table-bordered table-bordered">
<tr>
<th>#</th>
<th>First Name</th>
<th> Last Name</th>
<th> Username</th>
</tr>
<tr>
<td>1</td>
<td> Filip</td>
<td> Stefansson</td>
<td> filipstefansson</td>
</tr>
<tr>
<td> 2</td>
<td> Victor</td>
<td> Meyer</td>
<td> Pudge</td>
</tr>
<tr>
<td> 3</td>
<td> Måns</td>
<td> Ketola-Backe</td>
<td> mossboll</td>
</tr>
</table>
<div class="clearfix"></div>
<!-- Striped Table with Hover Effect -->
<p><strong>Striped with Hover Effect</strong></p>
<div class="dividert divider7"></div>
<table class="table table-hover table-bordered">
<tr>
<th>#</th>
<th>First Name</th>
<th> Last Name</th>
<th> Username</th>
</tr>
<tr>
<td>1</td>
<td> Filip</td>
<td> Stefansson</td>
<td> filipstefansson</td>
</tr>
<tr>
<td> 2</td>
<td> Victor</td>
<td> Meyer</td>
<td> Pudge</td>
</tr>
<tr>
<td> 3</td>
<td> Måns</td>
<td> Ketola-Backe</td>
<td> mossboll</td>
</tr>
</table>
<div class="clearfix"></div>
<!-- Condensed Table -->
<p><strong>Condensed</strong></p>
<div class="dividert divider7"></div>
<table class="table table-condensed table-bordered">
<tr>
<th>#</th>
<th>First Name</th>
<th> Last Name</th>
<th> Username</th>
</tr>
<tr>
<td>1</td>
<td> Filip</td>
<td> Stefansson</td>
<td> filipstefansson</td>
</tr>
<tr>
<td> 2</td>
<td> Victor</td>
<td> Meyer</td>
<td> Pudge</td>
</tr>
<tr>
<td> 3</td>
<td> Måns</td>
<td> Ketola-Backe</td>
<td> mossboll</td>
</tr>
</table>
</div>
<!-- / Middle Content -->
</div>
<!-- / Scrollable -->
</div>
<!-- / Wrapper -->
<script src='js/loadanim.js' type='text/javascript'></script><!-- Loading Animation -->
<script src='js/main.js' type='text/javascript'></script><!-- Main Styles -->
<script src='js/vendor/zepto.min.js' type='text/javascript'></script>
</body>
</html>