Untitled
unknown
plain_text
a year ago
554 B
6
Indexable
<!DOCTYPE html>
<html>
<head>
<title>My Interactive Page</title>
<style>
body {
font-family: sans-serif;
text-align: center;
}
</style>
</head>
<body>
<h1>Welcome to My Page!</h1>
<button onclick="changeColor()">Change Background Color</button>
<script>
function changeColor() {
const colors = ["red", "green", "blue", "yellow", "purple"];
const randomIndex = Math.floor(Math.random() * colors.length);
document.body.style.backgroundColor = colors[randomIndex];
}
</script>
</body>
</html>
Editor is loading...
Leave a Comment