File size: 1,188 Bytes
7737e28
 
 
3f9f730
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: apache-2.0
---
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Boredom Cure</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
        }
        .pill {
            margin-top: 100px;
            font-family: "Raedax Pro", sans-serif
            padding: 0.5em 1em;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }
        button:hover {
            background-color: #45a049;
        }
    </style>
         
  
</head>
<body>
    <div class="pill" type="button">
        <h1>Are you Bored??</h1>
        <p>Click the button below to cure your boredom.</p>
        <button onclick="cureBoredom()">Cure my boredom</button>
    </div>

    <script>
        function cureBoredom() {
            // Add your action here to cure boredom
            alert("Boredom cured!");
        }
    </script>
</body>
</html>