-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
executable file
·36 lines (30 loc) · 945 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8" />
<title>Incrementable</title>
<link rel="icon" href="favicon.svg">
<link href="style.css" rel="stylesheet" />
<script src="https://md-block.verou.me/md-block.js" type="module"></script>
</head>
<body>
<h1>Incrementable</h1>
<textarea id="editor">background: linear-gradient(0deg, #fed 50%, #fdc 0);
background-size: 3em;
margin: -1em;</textarea>
<p><strong>Instructions:</strong> Place the caret on a number inside the textarea and press the up or down keyboard arrow</p>
<details>
<summary>Docs</summary>
<md-block src="README.md"></md-block>
</details>
<script type="module">
import Incrementable from "./incrementable.js";
new Incrementable(editor);
</script>
<footer>
By <a href="http://lea.verou.me/">Lea Verou</a>
• <a href="https://github.com/leaverou/incrementable">GitHub</a>
• <a href="https://projects.verou.me/incrementable">v1</a>
</footer>
</body>
</html>