open pweeze
3 hours ago in HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>for januar</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f7f7f7;
text-align: center;
padding: 60px;
}
h2 {
font-weight: normal;
margin-bottom: 20px;
text-transform: none;
}
.btn {
display: inline-block;
margin: 12px;
padding: 14px 22px;
background: white;
border-radius: 12px;
border: 1px solid #dcdcdc;
cursor: pointer;
font-size: 17px;
transition: 0.2s;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.btn:hover {
transform: scale(1.05);
box-shadow: 0 0 12px rgba(0,0,0,0.1);
}
#msg {
margin-top: 30px;
font-size: 19px;
width: 90%;
max-width: 500px;
display: inline-block;
line-height: 1.6;
}
</style>
</head>
<body>
<h2>hi januar 👋</h2>
<p>tap one of these.</p>
<div>
<div class="btn" onclick="showMsg('semoga hari kamu nggak terlalu berat, ya.')">button 1</div>
<div class="btn" onclick="showMsg('take a breath dulu, kamu deserve a calm moment.')">button 2</div>
<div class="btn" onclick="showMsg('makasih udah jadi kamu — it means a lot.')">button 3</div>
<div class="btn" onclick="showMsg('sleep well later, i hope you rest with a light heart.')">button 4</div>
<div class="btn" onclick="showMsg('you’re doing better than you think, januar.')">button 5</div>
</div>
<div id="msg"></div>
<script>
function showMsg(text) {
document.getElementById("msg").innerHTML = text;
}
</script>
</body>
</html>