-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 934 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
29
30
31
32
33
34
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Canvas Submodule</title>
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript" src="excanvas.js"></script>
</head>
<body>
<header class="style-head">
<h1>Canvas Draw</h1>
</header>
<section id="canva-container">
</section>
<section id="colorp">
<div id="colorstream" class="colors">
</div>
<label for="palette">More Colors:</label>
<input id="palette" type="color" />
<button id="clear">Clear</button>
</section>
</body>
<script type="text/javascript" src="main.js"></script>
</html>