Spaces:
Running
Running
Create index.html
Browse files- index.html +88 -0
index.html
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
flex-direction: column;
|
| 11 |
+
justify-content: center;
|
| 12 |
+
align-items: center;
|
| 13 |
+
gap: 20px;
|
| 14 |
+
font-family: system-ui, sans-serif;
|
| 15 |
+
background: #f5f5f5;
|
| 16 |
+
margin: 0;
|
| 17 |
+
padding: 20px;
|
| 18 |
+
}
|
| 19 |
+
.links {
|
| 20 |
+
display: flex;
|
| 21 |
+
gap: 20px;
|
| 22 |
+
flex-wrap: wrap;
|
| 23 |
+
justify-content: center;
|
| 24 |
+
}
|
| 25 |
+
a {
|
| 26 |
+
font-size: 1.4rem;
|
| 27 |
+
padding: 1rem 2rem;
|
| 28 |
+
background: black;
|
| 29 |
+
color: white;
|
| 30 |
+
text-decoration: none;
|
| 31 |
+
border-radius: 8px;
|
| 32 |
+
transition: all 0.3s ease;
|
| 33 |
+
min-width: 200px;
|
| 34 |
+
text-align: center;
|
| 35 |
+
}
|
| 36 |
+
a:hover {
|
| 37 |
+
opacity: 0.9;
|
| 38 |
+
transform: translateY(-2px);
|
| 39 |
+
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
|
| 40 |
+
}
|
| 41 |
+
a.audio {
|
| 42 |
+
background: #4CAF50;
|
| 43 |
+
}
|
| 44 |
+
a.cover {
|
| 45 |
+
background: #2196F3;
|
| 46 |
+
}
|
| 47 |
+
a.main {
|
| 48 |
+
background: black;
|
| 49 |
+
font-size: 1.8rem;
|
| 50 |
+
padding: 1.5rem 3rem;
|
| 51 |
+
margin-bottom: 20px;
|
| 52 |
+
}
|
| 53 |
+
.title {
|
| 54 |
+
color: #333;
|
| 55 |
+
margin-bottom: 30px;
|
| 56 |
+
font-size: 2rem;
|
| 57 |
+
font-weight: bold;
|
| 58 |
+
}
|
| 59 |
+
</style>
|
| 60 |
+
</head>
|
| 61 |
+
<body>
|
| 62 |
+
|
| 63 |
+
<div class="title">🎵 1hit.no</div>
|
| 64 |
+
|
| 65 |
+
<!-- Main portal -->
|
| 66 |
+
<a href="https://1hit.no" target="_blank" rel="noopener noreferrer" class="main">
|
| 67 |
+
🏠 Enter 1hit.no
|
| 68 |
+
</a>
|
| 69 |
+
|
| 70 |
+
<!-- Direct links -->
|
| 71 |
+
<div class="links">
|
| 72 |
+
<a href="http://1hit.no/gen/audio/mp3" target="_blank" rel="noopener noreferrer" class="audio">
|
| 73 |
+
🎧 Audio MP3
|
| 74 |
+
</a>
|
| 75 |
+
|
| 76 |
+
<a href="https://www.1hit.no/cover/compu.php" target="_blank" rel="noopener noreferrer" class="cover">
|
| 77 |
+
💻 Cover Compu
|
| 78 |
+
</a>
|
| 79 |
+
|
| 80 |
+
<a href=" https://1hit.no/demo/hola.html" target="_blank" rel="noopener noreferrer" class="Mockup">
|
| 81 |
+
💻 Mockup
|
| 82 |
+
</a>
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
</div>
|
| 86 |
+
|
| 87 |
+
</body>
|
| 88 |
+
</html>
|