-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemenerator.html
57 lines (52 loc) · 1.89 KB
/
memenerator.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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://s3.amazonaws.com/codecademy-content/projects/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="memenerator.css">
<title>Memenerator</title>
</head>
<body>
<div class="header">
<div class="container">
<img src="memenerator.svg">
<h1>Memenerator</h1>
</div>
</div>
<div class="main">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="meme thumbnail">
<img src="memenerator.jpg">
<h1 class="top-caption">U say something?</h1>
<h1 class="bottom-caption">I'm all ears</h1>
</div>
</div>
<div class="col-md-6">
<div class="tool">
<h2>Create a meme</h2>
<form role="form">
<div class="form-group">
<label>Image URL</label>
<input id="image-url" type="text" class="form-control">
</div>
<div class="form-group">
<label>Top text</label>
<input id="top-text" type="text" class="form-control">
</div>
<div class="form-group">
<label>Bottom text</label>
<input id="bottom-text" type="text" class="form-control">
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="https://s3.amazonaws.com/codecademy-content/projects/jquery.min.js"></script>
<script src="memenerator.js"></script>
</body>
</html>