-
Notifications
You must be signed in to change notification settings - Fork 59
Open
Description
<title>Buat Bos Sandra</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}body {
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
</style>
<script>
function kirimNama() {
const nama = document.getElementById('nama').value;
if(nama.trim() === "") {
alert("Hei! Masukkan nama kamu dulu dong π");
} else {
alert("Halo, " + nama + "! Selamat datang di Buat Bos Sandra π");
}
}
</script>
.container {
background-color: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
width: 320px;
}
h1 {
font-size: 22px;
margin-bottom: 15px;
}
input {
width: 100%;
padding: 10px;
margin: 15px 0;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 16px;
}
button {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #4CAF50;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #45a049;
}
.emoji {
font-size: 40px;
margin-top: 10px;
}
Masukkan Nama Kamu
π³
Kirim
Metadata
Metadata
Assignees
Labels
No labels