-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 925 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Meme Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>
<textarea id="top-text"></textarea>
Text size: <input type="range" id="top-text-size-input" min="0.05" max="0.25" value="0.15" step="0.01">
</p>
<p>
<textarea id="bottom-text"></textarea>
Text size: <input type="range" id="bottom-text-size-input" min="0.05" max="0.25" value="0.15" step="0.01">
</p>
<p>
<input type="file" id="image-input" accept="image/*">
</p>
<p>
<button id="generate-btn">Generate!</button>
</p>
<p>
<canvas id="meme-canvas" title="Right click -> "Save image as...""></canvas>
</p>
<script src="meme.js"></script>
</body>
</html>