-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple.html
More file actions
41 lines (35 loc) · 925 Bytes
/
simple.html
File metadata and controls
41 lines (35 loc) · 925 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="./simple.css">
<script src="./simple.js"></script>
<title>Siteswap Art</title>
</head>
<body>
<nav>
<ul>
<li>Simple</li>
<li><a href="./standard.html">Standard</a></li>
<li><a href="./professional.html">Professional</a></li>
<li><a href="./gallery/">Gallery</a></li>
</ul>
</nav>
<header>
<h1>Siteswap Art - Simplified version</h1>
</header>
<main>
<div class="table">
<div class="row">
<div class="cell"><label for="pattern">Pattern</label></div>
<div class="cell"><input type="text" id="pattern" value="3"></div>
<div class="cell"><button id="draw">Draw</button></div>
</div>
</div>
<div>
<canvas id="board" width="300" height="300"></canvas>
</div>
</main>
</body>
</html>