File size: 2,981 Bytes
b9ee1be d2ddeba b9ee1be 01fcdb1 b9ee1be d2ddeba |
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 89 90 91 92 93 94 95 96 97 98 99 100 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sprunki Incredibox: Music Game & Mod |Sprunki Phase 4、5 </title>
<meta name="description" content="Explore Sprunki Incredibox, a super cool free online music game. Get the Sprunki Mod and play Game Sprunki. Create awesome music with funny characters!">
<meta name="keywords" content="Sprunki Incredibox, Incredibox, Sprunki Mod, Game Sprunki, Music Game, Music Creation, Character Game, Music Mixes, Fan Art, Game Lore">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #000;
}
.top-bar {
height: 60px;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
background: #f3f5f60d;
}
.main-wrapper {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
width: 640px;
height: 480px;
margin: 0 auto;
}
.expand-button {
position: absolute;
bottom: 20px;
right: 20px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 20px;
background-color: #13364e;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.expand-button:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<div id="app" style="width: 640px; height: 540px; margin: 0 auto">
<div class="top-bar">
<h1 style="color: #fff; text-align: center; font-size: 20px">
Sprunki
</h1>
<span style="font-size: 14px; color: #fff">
Visit
<a
href="https://sprunki.im/?utm_source=hf-sprunki#main"
target="_blank"
style="color: #fff; font-weight: bold"
>sprunki.im</a
></span
>
</div>
<div class="main-wrapper">
<iframe
src="https://r.sprunki.im/sprunki/index.html"
frameborder="0"
width="640"
height="480"></iframe>
<button
class="expand-button"
onclick="window.open('https://sprunki.im/?utm_source=hf-sprunki#main', '_blank')">
<svg
xmlns="http://www.w3.org/2000/svg"
style="width: 20px; height: 20px"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor">
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="{2}"
d="M4 8V4m0 0h4M4 4l5 5m11-1V4m0 0h-4m4 0l-5 5M4 16v4m0 0h4m-4 0l5-5m11 5l-5-5m5 5v-4m0 4h-4" />
</svg>
Full Screen
</button>
</div>
</div>
</body>
</html>
|