-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<script src="bower_components/requirejs/require.js" data-main="build/boot"></script>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div class="container">
<div id="toolbar" class="row">
<input class="toolbarElement" type="file" id="userFile" />
<div class="toolbarElement" id="editorSize">
<div class="toolbarElement">
<input class="toolbarElement" type="number" id="editorHeight" size="3" value="15" disabled />
<label for="editorHeight">Высота</label>
</div>
<div class="toolbarElement">
<input class="toolbarElement" type="number" id="editorWidth" size="3" value="40" disabled />
<label for="editorWidth">Ширина</label>
</div>
<div class="toolbarElement">
<input type="checkbox" id="editorSizeAuto" value="auto" checked>
<label for="editorSizeAuto">Авто</label>
</div>
</div>
<br style="clear: both;" />
</div>
<div id="editor" class="row"><div class="codeLine"><pre> </pre></div></div>
</div>
</body>
</html>