Create Project4.HTML

This commit is contained in:
Dangrainage 2023-08-24 08:58:20 +02:00 committed by GitHub
parent 53178bdac9
commit 130eb43129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
Project4.HTML Normal file
View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Secret Button Page</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() {
// Replace 'another-page.html' with the actual page you want to navigate to
window.location.href = 'Redditlikeheavyhitter.HTML';
}
</script>
</body>
</html>