-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.01 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
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Get your own cookie, to taste front at your freinds."
/>
<!-- HypeStyle CSS -->
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/css/hypestyle.min.css"
/>
<title>Get your cookie!</title>
<link rel="stylesheet" href="main.css" />
<link rel="icon" href="./assets/cookie.png" />
</head>
<body>
<div
class="bg-gray-light-2 justify-center ai-center text-center h-25 bs-sm"
id="app"
>
<br />
<h3 class="ff-system-ui font-lg text-gray-dark-6" id="cookieText">
Want a cookie?
</h3>
<br />
<p>
<a class="btn bs-sm" id="show">Click here</a>
</p>
<div id="video" class="mt-3 display-none">
<h2 class="text-gray-dark-5 ff-monospace">We got you!</h2>
<p class="mb-2 ff-monospace font-md">
You have with <span class="text-green-dark-2">success</span> been rick
rolled!
</p>
<video autoplay loop muted playsinline>
<source src="/assets/video.mp4" type="video/mp4" />
</video>
<div>
<h2 class="mb-1">Share the site with your freinds!</h2>
<a class="btn btn-gray tr-sm text-white mb-1" id="copy"
>🔗 Copy link</a
>
</div>
<div id="notification" class="display-none">
<p class="text-green-dark-2">
<span class="text-green-dark-2">Success!</span> The link has been
copied to your clipboard!
</p>
</div>
</div>
</div>
<div id="notCookies" class="text-center mt-5">
<p class="text-gray-dark-3 font-lg mb-2">
You have no cookies! click the button to get some cookies
</p>
<img src="assets/cookie.png" alt="cookie" id="cookie" width="12%" />
</div>
<script src="script.js"></script>
</body>
</html>