Build your own amazing websites!
Web development is like building a digital house with three main tools: HTML (structure), CSS (style), and JavaScript (behavior)!
<!DOCTYPE html>
<html>
<head>
<title>My Awesome Website</title>
</head>
<body>
<h1>Welcome to My Page!</h1>
<p>This is my first website.</p>
</body>
</html>body {
background-color: lightblue;
font-family: Arial;
}
h1 {
color: purple;
text-align: center;
}
.cool-box {
border: 3px solid pink;
padding: 10px;
border-radius: 10px;
}function changeText() {
document.getElementById("message")
.innerHTML = "Wow, you clicked me!";
}