README / index.html
MySafeCode's picture
Create index.html
2c6af74 verified
raw
history blame contribute delete
792 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Go to 1hit.no</title>
<style>
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: system-ui, sans-serif;
background: #f5f5f5;
}
a {
font-size: 1.4rem;
padding: 1rem 2rem;
background: black;
color: white;
text-decoration: none;
border-radius: 8px;
}
a:hover {
opacity: 0.9;
}
</style>
</head>
<body>
<!-- THIS is the escape hatch -->
<a href="https://1hit.no" target="_blank" rel="noopener noreferrer">
Enter 1hit.no
</a>
</body>
</html>