fantastic-garbanzo/Project4.HTML
2023-08-29 11:40:24 +02:00

37 lines
712 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="Dangrain.ico" type="image/x-icon">
<title>Project4</title>
<style>
body {
margin: 0;
padding: 0;
background-color: white;
position: relative;
}
#secretButton {
position: absolute;
top: 10px;
right: 10px;
width: 30px;
height: 30px;
background-color: rgba(0, 0, 0, 0.05);
border: none;
cursor: pointer;
opacity: 0.1;
}
</style>
</head>
<body>
<button id="secretButton" onclick="goToAnotherPage()"></button>
<script>
function goToAnotherPage() {
window.location.href = 'Redditlikeheavyhitter.HTML';
}
</script>
</body>
</html>