Cure_My_Boredom / README.md
Mango95's picture
Update README.md
3f9f730 verified
---
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>