-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.75 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
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
68
69
70
71
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Meme Generator</title>
<link rel="stylesheet" href="style.css" />
<script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>
<script src="script.js" defer></script>
</head>
<body>
<main>
<h1>Meme Generator</h1>
<form>
<div class="buttons-container">
<button class="button-upload-image">Upload Image</button>
<button class="button-show-url-inputs" disabled>
Image From URL
</button>
<button class="button-get-random-image">
Random Image
</button>
</div>
<div class="get-url-container">
<input
type="text"
id="input-url-image"
placeholder="https://your-image-url..."
/>
<button class="button-get-url">Get Image From URL</button>
</div>
<div class="image-container">
<p class="top-text">Top Text</p>
<!-- <img src="" width="400px" height="400px" /> -->
<p class="bottom-text">Bottom Text</p>
</div>
<div class="buttons-container">
<button class="button-type-text" disabled>
Type Your Own Text
</button>
<button class="button-random-text">
Generate Random Text
</button>
</div>
<div class="inputs-container">
<div class="input-container">
<label for="input-top-text">Top Text</label>
<input
type="text"
id="input-top-text"
value="top text"
/>
</div>
<div class="input-container">
<label for="input-bottom-text">Bottom Text</label>
<input
type="text"
id="input-bottom-text"
value="bottom text"
/>
</div>
</div>
<div>
<button class="button-save" disabled>Save</button>
<button class="button-share" disabled>Share</button>
</div>
</form>
</main>
</body>
</html>