-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 1.11 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 1.11 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8"/>
<title>Рисовалка</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu&subset=cyrillic"/>
<link rel="stylesheet" href="styles/index.css"/>
</head>
<body>
<header>
<h1>Рисовалка</h1>
</header>
<aside class="tools">
<form name="tools">
<ul class="fields">
<li>
<label for="f-tools-size">Толщина</label>
<input type="range" min="1" max="100"
step="1" value="20"
name="size" id="f-tools-size"
/>
</li>
<li>
<label for="f-tools-opacity">Плотность</label>
<input type="range" min="0.01" max="1"
step="0.01" value="1"
name="opacity" id="f-tools-opacity"
/>
</li>
<li>
<label for="f-tools-color">Цвет</label>
<input type="color" value="#000"
name="color" id="f-tools-color"
/>
</li>
<li>
<a class="save" role="button">Сохранить</a>
</li>
</ul>
</form>
</aside>
<main>
<canvas id="draw-canvas" width="800" height="600"></canvas>
</main>
<script src="scripts/build/main.js"></script>
</body>
</html>