forked from himanshu007-creator/frontend-fiesta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (41 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
<title>Key Detection</title>
<link rel="stylesheet" href="style.css">
</script>
<script src="index.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body class='bg-dark text-white'>
<canvas id="my-canvas"></canvas>
<div id="maindiv" class="mx-auto"style="width: 600px;">
<h1>Welcome to Meme-Genie 🧞 </h1>
<div style="margin:40px">
<div class="p-2 ">
<textarea id="top-text"></textarea>
Text size: <input type="range" id="top-text-size-input" min="0.05" max="0.25" value="0.15" step="0.01">
</div>
<div class="p-2 ">
<textarea id="bottom-text"></textarea>
Text size: <input type="range" id="bottom-text-size-input" min="0.05" max="0.25" value="0.15" step="0.01">
</div>
<div class="p-2 ">
<input type="file" id="image-input" accept="image/*">
</div>
<div class="p-2 ">
<button id="generate-btn">Generate!</button>
</div>
<canvas id="meme-canvas" title="Right click to save this meme"></canvas>
</div>
</div>
<div class="secret-div">
<h1>Hello comrade!</h1>
<img src='./assets/communist.jpg' height="500px"/>
<div id='toggle' style="padding:10px; background-color: black;color:white">BACK TO MEME GENERATOR</div>
</div>
<script src="script.js"></script>
</body>
</html>