-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (25 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memeion</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="meme-generator text-center py-12 px-4">
<h2 class="title text-2xl font-bold mb-2 mx-3">Loading...</h2>
<p class="subreddit"></p>
<div class="flex justify-center items-center height-auto width-auto">
<img src="" alt="meme" class="max-h-96 object-cover mt-4" />
</div>
<p class="author m-8 font-semibold"></p>
<div class="py-3 px-4 border-blue-800 border-2 text-xl font-bold rounded-xl hover:bg-blue-800 hover:text-blue-50 transition-all duration-300 inline mr-0 md:mr-5 text-blue-800">
<a href="" target="_blank" class="anchor"><span class="copied">Link to the Original Meme</span></a>
</div>
<button class="btn py-2 px-8 border-slate-800 border-2 mt-6 md:mt-0 text-xl font-bold bg-slate-800 text-slate-50 hover:bg-white hover:text-slate-800 rounded-xl transition-all duration-300">Generate Meme</button>
</div>
<script src="script.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
</body>
</html>