notaclickbait-memes
commited on
Commit
•
63f54cf
1
Parent(s):
d4f193a
First Commmit
Browse files- index.html +74 -19
index.html
CHANGED
@@ -1,19 +1,74 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>MemCoin - The Funny Colorful Crypto</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
background-color: #f0f8ff;
|
10 |
+
font-family: 'Comic Sans MS', cursive, sans-serif;
|
11 |
+
text-align: center;
|
12 |
+
color: #333;
|
13 |
+
margin: 0;
|
14 |
+
padding: 20px;
|
15 |
+
}
|
16 |
+
h1 {
|
17 |
+
color: #ff69b4;
|
18 |
+
}
|
19 |
+
.container {
|
20 |
+
background: linear-gradient(45deg, #ffcccb, #add8e6);
|
21 |
+
border-radius: 15px;
|
22 |
+
padding: 20px;
|
23 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
24 |
+
max-width: 600px;
|
25 |
+
margin: 0 auto;
|
26 |
+
}
|
27 |
+
img {
|
28 |
+
width: 150px;
|
29 |
+
height: 150px;
|
30 |
+
border-radius: 50%;
|
31 |
+
margin-bottom: 20px;
|
32 |
+
}
|
33 |
+
p {
|
34 |
+
font-size: 1.2em;
|
35 |
+
color: #8a2be2;
|
36 |
+
}
|
37 |
+
button {
|
38 |
+
background-color: #ffa500;
|
39 |
+
color: white;
|
40 |
+
border: none;
|
41 |
+
padding: 10px 20px;
|
42 |
+
font-size: 1em;
|
43 |
+
cursor: pointer;
|
44 |
+
border-radius: 5px;
|
45 |
+
transition: background-color 0.3s;
|
46 |
+
}
|
47 |
+
button:hover {
|
48 |
+
background-color: #ff8c00;
|
49 |
+
}
|
50 |
+
</style>
|
51 |
+
</head>
|
52 |
+
<body>
|
53 |
+
<div class="container">
|
54 |
+
<img src="https://via.placeholder.com/150" alt="MemCoin Logo">
|
55 |
+
<h1>Welcome to MemCoin!</h1>
|
56 |
+
<p>The most hilarious and colorful cryptocurrency in the universe!</p>
|
57 |
+
<button onclick="showJoke()">Tell me a MemCoin joke!</button>
|
58 |
+
<div id="joke" style="margin-top: 20px;"></div>
|
59 |
+
</div>
|
60 |
+
|
61 |
+
<script>
|
62 |
+
function showJoke() {
|
63 |
+
const jokes = [
|
64 |
+
"Why did the MemCoin cross the road? To get away from all the boring cryptocurrencies!",
|
65 |
+
"I tried to invest in MemCoin, but I lost my meme. Now I'm broke and confused.",
|
66 |
+
"MemCoin is like a rainbow - it's full of colors and promises, but you never know when it's going to disappear!",
|
67 |
+
"The best thing about MemCoin is that even if you lose all your coins, you still have great stories to tell!"
|
68 |
+
];
|
69 |
+
const randomJoke = jokes[Math.floor(Math.random() * jokes.length)];
|
70 |
+
document.getElementById('joke').innerText = randomJoke;
|
71 |
+
}
|
72 |
+
</script>
|
73 |
+
</body>
|
74 |
+
</html>
|