Spaces:
Running
Running
File size: 2,237 Bytes
7dd14df | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Go to 1hit.no</title>
<style>
body {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
font-family: system-ui, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
}
.links {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}
a {
font-size: 1.4rem;
padding: 1rem 2rem;
background: black;
color: white;
text-decoration: none;
border-radius: 8px;
transition: all 0.3s ease;
min-width: 200px;
text-align: center;
}
a:hover {
opacity: 0.9;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
a.audio {
background: #4CAF50;
}
a.cover {
background: #2196F3;
}
a.main {
background: black;
font-size: 1.8rem;
padding: 1.5rem 3rem;
margin-bottom: 20px;
}
.title {
color: #333;
margin-bottom: 30px;
font-size: 2rem;
font-weight: bold;
}
</style>
</head>
<body>
<div class="title">π΅ 1hit.no</div>
<!-- Main portal -->
<a href="https://1hit.no" target="_blank" rel="noopener noreferrer" class="main">
π Enter 1hit.no
</a>
<!-- Direct links -->
<div class="links">
<a href="http://1hit.no/gen/audio/mp3" target="_blank" rel="noopener noreferrer" class="audio">
π§ Audio MP3
</a>
<a href="https://www.1hit.no/cover/compu.php" target="_blank" rel="noopener noreferrer" class="cover">
π» Cover Compu
</a>
<a href=" https://1hit.no/demo/hola.html" target="_blank" rel="noopener noreferrer" class="Mockup">
π» Mockup
</a>
</div>
</body>
</html> |