-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtable-responsive.html
More file actions
67 lines (63 loc) · 1.39 KB
/
table-responsive.html
File metadata and controls
67 lines (63 loc) · 1.39 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
<html>
<head>
<title>Side Navigation Menu</title>
<meta charset="utf-8">
<meta name="Author" content="https://github.com/pablorgarcia" />
<meta name="description" content="Table Responsive" />
<meta name="keywords" content="table, responsive" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="table-responsive.css" media="screen" type="text/css" rel="stylesheet" />
</head>
<body>
<h1><span class="blue"><</span>Table<span class="blue">></span> <span class="yellow">Responsive</pan></h1>
<h2>Created with love by <a href="http://pablogarcia.dev" target="_blank">Pablo García</a></h2>
<table class="container">
<thead>
<tr>
<th><h1>Sites</h1></th>
<th><h1>Views</h1></th>
<th><h1>Clicks</h1></th>
<th><h1>Average</h1></th>
</tr>
</thead>
<tbody>
<tr>
<td>Google</td>
<td>9518</td>
<td>6369</td>
<td>01:32:50</td>
</tr>
<tr>
<td>Twitter</td>
<td>7326</td>
<td>10437</td>
<td>00:51:22</td>
</tr>
<tr>
<td>Amazon</td>
<td>4162</td>
<td>5327</td>
<td>00:24:34</td>
</tr>
<tr>
<td>LinkedIn</td>
<td>3654</td>
<td>2961</td>
<td>00:12:10</td>
</tr>
<tr>
<td>CodePen</td>
<td>2002</td>
<td>4135</td>
<td>00:46:19</td>
</tr>
<tr>
<td>GitHub</td>
<td>4623</td>
<td>3486</td>
<td>00:31:52</td>
</tr>
</tbody>
</table>
</body>
</html>