Mango95 commited on
Commit
3f9f730
1 Parent(s): 7737e28

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md CHANGED
@@ -1,3 +1,50 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+ <!DOCTYPE html>
5
+ <html lang="en">
6
+ <head>
7
+ <meta charset="UTF-8">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
+ <title>Boredom Cure</title>
10
+ <style>
11
+ body {
12
+ font-family: Arial, sans-serif;
13
+ text-align: center;
14
+ }
15
+ .pill {
16
+ margin-top: 100px;
17
+ font-family: "Raedax Pro", sans-serif
18
+ padding: 0.5em 1em;
19
+ }
20
+ button {
21
+ padding: 10px 20px;
22
+ font-size: 16px;
23
+ background-color: #4CAF50;
24
+ color: white;
25
+ border: none;
26
+ cursor: pointer;
27
+ border-radius: 5px;
28
+ }
29
+ button:hover {
30
+ background-color: #45a049;
31
+ }
32
+ </style>
33
+
34
+
35
+ </head>
36
+ <body>
37
+ <div class="pill" type="button">
38
+ <h1>Are you Bored??</h1>
39
+ <p>Click the button below to cure your boredom.</p>
40
+ <button onclick="cureBoredom()">Cure my boredom</button>
41
+ </div>
42
+
43
+ <script>
44
+ function cureBoredom() {
45
+ // Add your action here to cure boredom
46
+ alert("Boredom cured!");
47
+ }
48
+ </script>
49
+ </body>
50
+ </html>