-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Meta Tags for SEO -->
<meta name="description" content="Description of your website">
<meta name="keywords" content="keywords, for, your, website">
<meta name="author" content="MrGenie151">
<!-- Facebook Open Graph Meta Tags -->
<meta property="og:title" content="Punishment Giver">
<meta property="og:description" content="Get a randomized punishment, just for you...">
<!--<meta property="og:image" content="path_to_your_image"> -->
<!--<meta property="og:url" content="https://www.yourwebsite.com"> -->
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Your Page Title">
<meta name="twitter:description" content="Description of your website">
<meta name="twitter:image" content="path_to_your_image">
<title>Punishment Giver</title>
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body>
<h1>Punishment Giver</h1>
<p>Inspired by a Reddit post, this website will give you a punishment that you must screenshot and follow what it says.<br />(well, i don't control what you do, but it's more if you play along)</p>
<button id="giver">Get Your Punishment</button>
<div id="result">
<h2>You have been punished!</h2>
<p id="ptext">none</p>
<p>Screenshot the box and send it to friends!<br />
Don't forget do actually do the punishment too.
</p>
</div>
<script src="script.js"></script>
</body>
</html>