-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (32 loc) · 884 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Blender cheat sheet</title>
<link rel="stylesheet" type="text/css" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Cantarell:ital,wght@0,400;0,700;1,400;1,700&family=Fira+Mono:wght@400;500;700&family=Merriweather:wght@300;400&display=swap" />
<script src="index.js"></script>
</head>
<body>
<header>
<h1>blenderkeys</h1>
</header>
<main>
<div id="scrolly-bitch">
<template id="section-template">
<section>
<h2 id="section-title"></h2>
</section>
</template>
<template id="keybind-template">
<div class="keybind">
<p id="label"></p>
<p id="keys"></p>
</div>
</template>
</div>
</main>
</body>
</html>