MySafeCode commited on
Commit
2c6af74
·
verified ·
1 Parent(s): b7a597e

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +36 -0
index.html ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Go to 1hit.no</title>
6
+ <style>
7
+ body {
8
+ height: 100vh;
9
+ display: flex;
10
+ justify-content: center;
11
+ align-items: center;
12
+ font-family: system-ui, sans-serif;
13
+ background: #f5f5f5;
14
+ }
15
+ a {
16
+ font-size: 1.4rem;
17
+ padding: 1rem 2rem;
18
+ background: black;
19
+ color: white;
20
+ text-decoration: none;
21
+ border-radius: 8px;
22
+ }
23
+ a:hover {
24
+ opacity: 0.9;
25
+ }
26
+ </style>
27
+ </head>
28
+ <body>
29
+
30
+ <!-- THIS is the escape hatch -->
31
+ <a href="https://1hit.no" target="_blank" rel="noopener noreferrer">
32
+ Enter 1hit.no
33
+ </a>
34
+
35
+ </body>
36
+ </html>