MySafeCode commited on
Commit
42d58ba
·
verified ·
1 Parent(s): dc5b320

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +19 -12
index.html CHANGED
@@ -1,31 +1,38 @@
1
  <!DOCTYPE html>
2
- <html>
3
  <head>
4
  <meta charset="UTF-8">
5
- <title>Open 1hit.no</title>
6
  <style>
7
  body {
 
8
  display: flex;
9
  justify-content: center;
10
  align-items: center;
11
- height: 100vh;
12
  font-family: system-ui, sans-serif;
 
13
  }
14
- button {
15
- font-size: 1.2rem;
16
  padding: 1rem 2rem;
17
- cursor: pointer;
 
 
 
 
 
 
18
  }
19
  </style>
20
  </head>
21
  <body>
22
- <button onclick="openSite()">Enter 1hit.no</button>
23
 
24
- <script>
25
- function openSite() {
26
- window.open("https://1hit.no", "_top");
27
- }
28
- </script>
29
  </body>
30
  </html>
31
 
 
 
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>
37
 
38
+