-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.05 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.05 KB
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
<!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>Tic Tac Toe</title>
<link href="https://fonts.googleapis.com/css?family=Patrick+Hand" rel="stylesheet">
<link rel="stylesheet" href="sass/main.css">
</head>
<body>
<div class="container">
<canvas id="canvas">You browser is not supported </canvas>
<div class="options">
<div class="color">
<input id="color" type="color">
<span id="Rvalue">R: 100</span>
<input id="R" type="range" min = "0" max = "360" step="5">
<span id="rvalue">r: 100</span>
<input id="r" type="range" min = "0" max = "360" step="5">
<span id="dvalue">d: 100</span>
<input id="d" type="range" min = "0" max = "200" step="5">
<span id="tvalue">t: 100</span>
<input id="t" type="range" min = "0" max = "100" >
</div>
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>