-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (38 loc) · 1.28 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
<!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" />
<link
rel="icon"
type="image/x-icon"
href="assets/images/table-colums.ico"
/>
<title>Sortable Columns Table</title>
<link rel="stylesheet" href="assets/css/normalize.css" />
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<header class="c-header">
<h1 class="c-header__title">Sortable Columns Table</h1>
<h2 class="c-header__subtitle">
Directional Keys: <code>tab</code>, <code>shift+tab</code>,
<code>↑</code>, <code>↓</code>, <code>←</code>,
<code>→</code>, <code>w</code>, <code>s</code>, <code>a</code>,
<code>d</code>, <code>home</code>, <code>end</code>
</h2>
<h2 class="c-header__subtitle">
Trigger Column Sort Keys (column focus required): <code>enter</code>,
<code>space</code>
</h2>
</header>
<main class="l-table-container">
<table class="c-table" role="grid" aria-readonly="true">
<thead class="c-table__head"></thead>
<tbody class="c-table__body"></tbody>
</table>
</main>
<script src="assets/js/script.js"></script>
</body>
</html>