-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (53 loc) · 2.03 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Auto memer - the automatic meme generator</title>
<script src="./utilities.js" defer></script>
<script src="./constants.js" defer></script>
<script src="./data.js" defer></script>
<script src="./generator.js" defer></script>
<link rel="stylesheet" href="dark-glow-css/dark-glow.css"></style>
<link rel="stylesheet" href="style.css"></style>
</head>
<body>
<header>
<h1>Auto memer</h1>
<h2>The automatic meme generator</h2>
<b>No idea for a meme? Then this is generator for you!</b> <br>
Just answer a few simple questions and this generator makes a meme from your responses!
</header>
<main>
<div id="question">
<h2 id="q-header"></h2>
<div id="q-textfield">
<span id="q-prefix"></span> <!-- Prefix -->
<input style="display: none" id="q-input">
<span id="q-postfix"></span> <!-- Postfix -->
</div>
<span id="q-button-row"></div>
</div>
<div id="gray-warning"></div>
<div id="iframe-outer" style="display: none">
<h3>Not sure? This page may help you:</h3>
<iframe id="iframe"></iframe>
</div>
<div id="memeLoading">Generating the meme...</div>
<img id="result"></div>
<hr style="margin-top: 32px; margin-bottom: 32px">
<div class="lang-picker">
<b>Generator language:</b>
<div class="inline-opts" id="lang-picker">
<div id="lang-en" onclick="setLang('en')" class="selected">English</div>
<div id="lang-cs" onclick="setLang('cs')">Czech</div>
</div>
</div>
<div>This changes just the language of the generator, not of the entire website.</div>
</main>
<footer>
This project is possible thanks to <a href="https://memegen.link">memegen</a>.<br>
Source code is avialable on <a href="https://github.com/FireFragment/auto-memer">GitHub</a>
</footer>
</script>
</body>
</html>