-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeme.html
67 lines (35 loc) · 1.2 KB
/
meme.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html>
<head>
<title>Meme Engine</title>
<link rel="stylesheet" type="text/css" href="css/meme.css">
<link href="css/bootstrap.min.css">
<script src="js/jquery-2.1.4.min.js"></script>
</head>
<body>
<h1 class="outer">Instant-Meme</h1>
<a id='refresh' href="">Make Another Meme!</a> <!-- href="" reloads the current page -->
<div class="outer">
</div>
<br>
<div id="box1">
<input id="ifile" type="file" style="display:none" />
<button class="btn btn-link" onclick="$('#ifile').click();"> Upload</button>
<br>
</div>
<div id="box2" style="display: none;">
<input id="topline" placeholder="TOP LINE">
<br><br>
<input id="bottomline" placeholder="BOTTOM LINE">
<br><br>
<canvas id="c" width="0" height="0"></canvas>
<br><br>
<a href="#" class="buttonLink" id="downloadLink" download>Download </a> <!--download attribute http://www.w3schools.com/tags/att_a_download.asp -->
<br><br>
</div>
<br><br>
<br>
<script type="text/javascript" src="js/meme.js">
</script>
</body>
</html>