-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (51 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Meme Generator</title>
<script src="app.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<h1>Meme Generator</h1>
<div id="meme">
<!-- if image fails to load, set it to the placeholder -->
<img
src="placeholder.svg"
id="meme-image"
onerror="this.src='placeholder.svg';"
/>
<div class="meme-text" id="top-text">TOP TEXT</div>
<div class="meme-text" id="bottom-text">BOTTOM TEXT</div>
</div>
<form>
<label for="url-input">Image URL: </label
><input type="text" id="url-input" />
<label for="top-text-input">Top text: </label
><input type="text" id="top-text-input" />
<label for="bottom-text-input">Bottom text: </label
><input type="text" id="bottom-text-input" />
<button type="submit" id="submit">Submit</button>
</form>
<footer>
<p>
Notice: The meme text will not have the black border if viewed with
older browsers or any version of Internet Explorer.
</p>
<p>
Placeholder image attribution:
<a
href="https://commons.wikimedia.org/wiki/File:Placeholder_view_vector.svg"
>Flanoz</a
>, CC0, via Wikimedia Commons
</p>
</footer>
</body>
</html>