<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daftar URL</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
}
.container {
padding: 20px;
max-width: 900px;
margin: 0 auto;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #007bff;
font-size: 16px;
transition: color 0.3s;
}
a:hover {
color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>Daftar URL</h1>
</header>
<div class="container">
<ul id="urlList">
<!-- Daftar URL akan diisi oleh JavaScript -->
</ul>
</div>
<script>
// Daftar URL yang diberikan
const urls = [
"https://popl.co/card/6g9hAiKT/1",
"https://popl.co/card/MPvUvoxs/1",
"https://popl.co/card/0msJGHEC/1",
"https://popl.co/card/HTxkDCvF/1",
"https://popl.co/card/jKwCV6eO/1",
"https://popl.co/card/zrTCFEvL/1",
"https://venomvietsub.graphy.com/",
"https://moana2vietsub.graphy.com/",
"https://nhimsonic3vietsub.graphy.com/",
"https://nuhonbactyvietsub.graphy.com/",
"https://nhagiatien.shop.netcash.co.za/",
"https://nas.io/viiii/challenges/vie2025",
"https://nhagiatien2025vietsub.graphy.com/",
"https://teeyodquyantang2vietsub.graphy.com/",
"https://latmat7motdieuuocvietsub.graphy.com/",
"https://natra2madongnaohaifullhd.graphy.com/",
"https://deepstash.com/idea/451978/ne-zha-2-2025-",
"https://natra2madongnaohai2025vietsub.graphy.com/",
"https://tieuthujonessuyvianh2025vietsub.graphy.com/",
"https://deepstash.com/idea/452310/the-last-dance-2025-",
"https://deepstash.com/idea/451987/2025-ne-zha-2-4k1080p",
"https://deepstash.com/idea/452307/dead-talents-society-2025-",
"https://deepstash.com/idea/452311/2025-the-last-dance-4k1080p",
"https://deepstash.com/idea/452308/2025-dead-talents-society-4k1080p",
"https://www.facebook.com/media/set/?set=a.122143442186471172&type=3",
"https://www.facebook.com/media/set/?set=a.122143442390471172&type=3",
"https://www.facebook.com/media/set/?set=a.122143442960471172&type=3",
"https://www.facebook.com/media/set/?set=a.122143443596471172&type=3",
"https://www.facebook.com/media/set/?set=a.122143444238471172&type=3",
"https://www.facebook.com/media/set/?set=a.122143444430471172&type=3",
"https://factsplat.com/users/05f0c74d-4296-4816-9188-33bec4fc3726",
"https://taplink.cc/mileymillie",
"https://open.firstory.me/story/cm7m4tnzl000001uy48pb8l92",
"https://baskadia.com/post/8kecc",
"https://medium.com/@reretp/the-evolution-of-smartphones-02902730bfec",
"https://honeyveleti.hashnode.dev/how-smartphones-have-transformed-modern-life",
"https://www.fimfiction.net/blog/1064370/the-journey-of-mobile-phones-a-revolution-in-communication-and-technology",
"https://businessboostier.mn.co/posts/80531270",
"https://www.are.na/block/34834643",
"https://dly.to/OENgfaKqcky",
"https://www.taptap.io/post/9159790",
"https://portaly.cc/mileymillies",
"https://hackmd.io/@avaaude/rJfG8a3c1x",
"https://rentry.co/MileyMillie",
"https://pastelink.net/n2ygthsc",
"https://pastebin.com/8Z9vg6RE",
"https://paste.firnsy.com/paste/LOUbxRGwNgX",
"https://etextpad.com/n8wfedfqw5",
"https://paste.feed-the-beast.com/view/87f228c3",
"https://paiza.io/projects/v2jzLgChcxTRejfG858R-w?language=php",
"https://pastebin.mozilla.org/E1k8YOcU",
"https://pastebin.freeswitch.org/view/602e7759",
"https://paste.toolforge.org/view/52038137",
"https://snippet.host/bggtav",
"https://justpaste.it/dh71e",
"https://paste.intergen.online/view/6ceeba84",
"https://tempel.in/view/Dv5BAiB",
"https://telegra.ph/MileyMillie-02-26",
"https://notes.io/wZ8KY",
"https://www.pastery.net/gknkcf/",
"https://tech.io/snippet/2s4WoeP",
"https://glot.io/snippets/h4znhh2svv",
"https://glot.io/snippets/h4znhlqgzn",
"https://glot.io/snippets/h4znhqqicr",
"https://glot.io/snippets/h4znhuxkqz",
"https://ivpaste.com/v/qjlaKZfuaK"
];
// Menampilkan URL dalam list
const urlListElement = document.getElementById('urlList');
urls.forEach(url => {
const li = document.createElement('li');
const a = document.createElement('a');
a.href = url;
a.target = '_blank';
a.textContent = url;
li.appendChild(a);
urlListElement.appendChild(li);
});
</script>
</body>
</html>