<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daftar Tautan</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
margin-bottom: 20px;
font-size: 2rem;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #3498db;
font-size: 1.1rem;
}
a:hover {
text-decoration: underline;
color: #2c3e50;
}
</style>
</head>
<body>
<div class="container">
<h1>Daftar Tautan</h1>
<ul id="linkList">
<!-- Daftar tautan akan muncul di sini -->
</ul>
</div>
<script>
const links = [
"https://cccv.to/botubaothuhd",
"https://cccv.to/botubaothuzgq",
"https://cccv.to/botubaothuvietsub",
"https://cccv.to/bietdoisamsetthunderbolts",
"https://cccv.to/bietdoisamsetrapchieuphim",
"https://nezzha2.graphy.com/courses/nezha2-2025",
"https://nezzha2.graphy.com/courses/nezha2thaisub",
"https://thestonee.graphy.com/courses/the-stone-2025",
"https://thestonee.graphy.com/courses/thestonethaisub",
"https://thunderboltss.graphy.com/courses/biet-doi-sam-set",
"https://tombwattcher.graphy.com/courses/tomb-watcher-2025",
"https://tombwattcher.graphy.com/courses/tombwatcherthaisub",
"https://thunderboltss.graphy.com/courses/bietdoisamsetfullhd",
"https://aminecrafttmovie.graphy.com/courses/aminecraftmoviethaisub",
"https://aminecrafttmovie.graphy.com/courses/a-minecraft-movie-2025",
"https://www.ancient-origins.net/users/nha-gia-tien-full-hd",
"https://www.ancient-origins.net/users/bo-tu-bao-thu-full-hd",
"https://www.ancient-origins.net/users/una-pelicula-de-minecraft-2025",
"https://www.ancient-origins.net/users/lat-mat-8-vong-tay-nang-full-hd",
"https://www.ancient-origins.net/users/ver-una-pelicula-de-minecraft-completa-online-espanol",
"https://detectiveconanoneeyedflashbackk.graphy.com/courses/detectiveconan-oneeyedflashback-2025",
"https://detectiveconanoneeyedflashbackk.graphy.com/courses/detectiveconanoneeyedflashbackthaisub",
"https://www.are.na/block/36387744",
"https://open.firstory.me/story/cma5jdyfu17sl01vb4qnu7hmb",
"https://blognews.mystrikingly.com/blog/alex-marquez-secures-first-motogp-win-at-jerez",
"https://blognews.mybloghunch.com/marc-marquez-crashes-out-in-spain-still-searching-for-answers",
"https://baskadia.com/post/8kkeo",
"https://colab.research.google.com/drive/18jiWgy43_6wPsKZby9FNVflEsuGYang3?usp=sharing",
"https://reretp.medium.com/motogp-25-game-launches-with-major-updates-fa69d2f0beee",
"https://blog-news.hashnode.dev/pedro-acosta-undergoes-surgery-after-jerez-test",
"https://www.fimfiction.net/blog/1070857/dramatic-spanish-gp-triumph-for-alex-trouble-for-marc",
"https://factsplat.com/users/f9bb2eb1-2edf-4230-a0eb-ae8b2e8e850b",
"https://direct.me/calaviafloria",
"https://bento.me/calaviafloria",
"https://www.TwosApp.com/68138cbab5a99641c238009b"
];
const linkList = document.getElementById("linkList");
links.forEach(link => {
const li = document.createElement("li");
const a = document.createElement("a");
a.href = link;
a.textContent = link;
li.appendChild(a);
linkList.appendChild(li);
});
</script>
</body>
</html>