-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meme Generattor</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<h1>Thou shall meme!</h1>
<h4>Fill out the form to generate a meme.</h4>
<div class="form-group">
<form class="input-form">
<div>
<label for="url">Image URL</label>
<input type="url" name="url-link" class="form-control" id="url" placeholder="What's the URL for your meme image?" required><br>
</div>
<div>
<label for="top">Text on top</label>
<input type="text" name="top-text" class="form-control" id="top" placeholder="[Optional] What text should be at the top of the meme?"><br>
</div>
<div>
<label for="bottom">Text on bottom</label>
<input type="text" name="bottom-text" class="form-control" id="bottom" placeholder="[Optional] What text should be at the bottom of the meme?"><br>
</div>
<input id="submit" type="submit" name="form-control-submit" value="SUBMIT">
</form>
</div>
<div class="canvas-container">
</div>
<script src="script.js"></script>
</body>
</html>