-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (83 loc) · 2.59 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" />
<link rel="icon" type="image/svg+xml" href="/rovinggrid.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Meta Tags -->
<title>Roving Grid Demos</title>
<meta
name="description"
content="A set of demos illustrating use cases for roving-grid-ux"
/>
<meta name="author" content="Jon MacCaull" />
<meta
name="keywords"
content="keyboard ux, grid navigation, javascript, roving focus"
/>
<!-- Open Graph Meta Tags -->
<meta property="og:url" content="https://roving-grid.netlify.app" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Roving Grid Demos" />
<meta
property="og:description"
content="A set of demos illustrating use cases for roving-grid-ux"
/>
<meta
property="og:image"
content="https://roving-grid.netlify.app/social_card.jpg"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@jonmaccaull" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="background" aria-hidden="true">
<div class="horizon"></div>
</div>
<header>
<h1>Roving Grid</h1>
<p>
Quickly add keyboard navigation to any DOM elements with a grid layout.
</p>
</header>
<nav>
<ul>
<li>
<a href="./grid-playground.html" class="card">
<h2>Playground</h2>
<div class="hero">
<img
src="/assets/PlaygroundHero.png"
srcset="/assets/PlaygroundHero@2x.png 2x"
alt="Grid of cells"
/>
</div>
</a>
</li>
<li>
<a href="./glyph-browser.html" class="card">
<h2>Glyph Browser</h2>
<div class="hero">
<img
src="/assets/GlyphHero.png"
srcset="/assets/GlyphHero@2x.png 2x"
alt="Grid of glyphs from a typeface"
/>
</div>
</a>
</li>
</ul>
</nav>
<footer>
<a href="https://github.com/JonoMacC/roving-grid-ux">Github</a>
</footer>
</body>
</html>