xxxxxxxxxx
30
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<script>
window.onload = () => {
const btn = document.getElementById("btn");
btn.onclick = onButtonPress;
}
function onButtonPress() {
const container = document.getElementById("fun-container");
const textOptions = ["wow", "yay", "fun!"];
const elem = document.createElement("p");
elem.textContent = textOptions[Math.floor(Math.random()*3)];
container.appendChild(elem);
}
</script>
</head>
<body>
<button id="btn">
Click me
</button>
<div id="fun-container">
</div>
</body>
</html>