-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·44 lines (38 loc) · 1.37 KB
/
index.html
File metadata and controls
executable file
·44 lines (38 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>ILoveU</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css" />
<link rel="stylesheet" href="styles.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="app.js"></script>
</head>
<body>
<section class="section">
<div class="container">
<div class="file has-name is-fullwidth is-dark">
<label class="file-label">
<input class="file-input" type="file" name="uploader" accept="image/x-png" onchange="processImg()">
<span class="file-cta">
<span class="file-icon">
<i class="fas fa-upload"></i>
</span>
<span class="file-label">
Upload Image
</span>
</span>
<span class="file-name" id="filename">
...
</span>
</label>
</div>
</div>
<div class="container">
<textarea id="output"></textarea>
<canvas id="cnvs"></canvas>
</div>
</section>
</body>
</html>