-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>rakeful</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header id="header">
<h1>rakeful</h1>
</header>
<main class="canvas-box">
<div class="canvas-container"><canvas id="canvas"></canvas></div>
</main>
<footer id="controls">
<button id="reset">reset</button>
<input type="radio" class="rakeSelect" id="rake3" name="rake" value="rake3">
<label class="rakeLabel" for="rake3">3 teeth</label>
<input type="radio" class="rakeSelect" id="rake4" name="rake" value="rake4" checked>
<label class="rakeLabel" for="rake4">4 teeth</label>
<input type="radio" class="rakeSelect" id="rake5" name="rake" value="rake5">
<label class="rakeLabel" for="rake5">5 teeth</label>
</footer>
<script src="./js/main.js"></script>
</body>
</html>