File size: 792 Bytes
2c6af74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!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>