-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.61 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.61 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
<DOCTYPE !html>
<html>
<head>
<script src="https://goo.gl/W5y95w"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css"/>
<link href='https://fonts.googleapis.com/css?family=Hind+Guntur' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<h1>Paint</h1>
</header>
<main>
<span id="tools">
<h2>Tools</h2>
<ul>
<li><i class="fa fa-pencil fa-lg toolButton" aria-hidden="true" title="Pencil"></i></li>
<li><i class="fa fa-arrows fa-lg toolButton" aria-hidden="true" title="Move"></i></li>
<li><i class="fa fa-square fa-lg toolButton" aria-hidden="true" title="Rectangle"></i></li>
</ul>
<div id="colourPicker">
<h2>Colour</h2>
<h5>Brush Size </h5><b id="brushSize">0</b>
<input id="slider" type="range" min="1" max="125" step="1" />
<input type="color" id="colour"/>
</div>
</span>
<span id="canvasContainer">
<canvas id="display"></canvas>
</span>
<span id="layers">
<h2>Layers</h2>
<ul>
</ul>
<span id="layerTools">
<ul>
<li><i class="fa fa-plus fa-lg layerButton" aria-hidden="true" title="New"></i></li>
</ul>
</span>
</span>
</main>
</body>
<script src="script.js"></script>
</html>