-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
31 lines (28 loc) · 1.15 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 lang="en">
<head>
<meta charset="utf-8">
<title>Image Editor</title>
<!-- Latest compiled minified CSS-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<canvas id="myCan"></canvas>
<div id="save" class="btn btn-primary">Save</div>
<input type="file" class="btn btn-default" id="fileloader" name="fileloader">
<p>
<input type="text" id="msg" placeholder="write your message here" width="475"/>
</p>
<img id="bkg" />
<div>
<img id="canvasout" />
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src='script.js'></script>
<script src='nsibidiChar.js'></script>
</body>
</html>