<button id="random-wiki-btn">Go to Random Wikipedia Page</button>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
button {
font-size: 1.2em;
padding: 10px 20px;
cursor: pointer;
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
document
.getElementById("random-wiki-btn")
.addEventListener("click", function () {
window.location.href = "https://en.wikipedia.org/wiki/Special:Random";
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.