-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 928 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
<!doctype html>
<html lang="en">
<head>
<meta charset='UTF-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>x-mmd-funnyeditor</title>
<link rel="stylesheet" href="dist/css/normalize.css">
<link rel="stylesheet" href="dist/css/common.min.css">
<!--<script src="dist/js/common.min.js" type="text/javascript"></script>-->
<script src="js/main.js" type="text/javascript"></script>
</head>
<body>
<div class="wrapper">
<div class="bground">
<canvas id="editor" width="400" height="420">
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<div class="controls">
<label for="color-change">Цвет </label>
<input type="color" value="#ddaaff" id="color-change"><br>
<label for="num-of-lines">Количество </label>
<input type="number" value="2" id="num-of-lines">
</div>
</div>
</div>
</body>
</html>