-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (38 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./index.css">
<title>Meme Generator</title>
</head>
<body>
<div class="container">
<div class="text-center">
<div class="position-relative my-5">
<img id="meme-pic" src="./dog.gif">
<h1 id="top-text">Top text</h1>
<h1 id="bottom-text">Bottom text</h1>
</div>
</div>
<div class="form-group">
<label for="top-text-input">Top Text</label>
<input type="text" id="top-text-input" class="form-control">
</div>
<div class="form-group">
<label for="bottom-text-input">Bottom Text</label>
<input type="text" id="bottom-text-input" class="form-control">
</div>
<div class="form-group">
<label for="img-src-input">Image Link</label>
<input type="text" id="img-src-input" class="form-control">
</div>
<button id="create-meme" class="btn btn-primary">Create Meme</button>
</div>
<!-- JavaScript -->
<script src="./index.js"></script>
</body>
</html>