<!
DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Website Sederhana</title>
<link rel="stylesheet" href="[Link]">
</head>
<body>
<h1>Selamat Datang di Website Saya</h1>
<p>Klik tombol di bawah ini:</p>
<button onclick="tampilkanPesan()">Klik Saya</button>
<script src="[Link]"></script>
</body>
</html>
body {
background-color: #f0f8ff;
font-family: Arial, sans-serif;
text-align: center;
padding: 40px;
h1 {
color: #2c3e50;
font-size: 36px;
button {
background-color: #3498db;
color: white;
padding: 10px 20px;
border: none;
font-size: 16px;
cursor: pointer;
button:hover {
background-color: #2980b9;
}
function tampilkanPesan() {
alert("Halo, ini adalah interaksi JavaScript pertama kamu!");