<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Links</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
}
.button {
display: block;
background-color: #007BFF;
color: white;
padding: 10px;
margin: 10px 0;
text-align: center;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Movie Links</h1>
<div id="link-list"></div>
</div>
<script>
const links = [
"https://bento.me/vip-death-seat-2024-thai-hd",
"https://bento.me/vip-death-seat-subthai",
"https://bento.me/vip-death-seat-2024-hd-1080p",
"https://bento.me/the-paradise-of-thorns-2024-thai",
"https://bento.me/the-paradise-of-thorns-2024-sub-thai",
"https://bento.me/the-paradise-of-thorns-thai-2024-hd-1080p",
"https://bento.me/the-holy-man-comeback-2024-thai",
"https://bento.me/the-holy-man-comeback-2024-sub-thai",
"https://bento.me/the-holy-man-comeback-2024-hd-1080p",
"https://bento.me/out-of-the-nest-2024-subthai",
"https://bento.me/out-of-the-nest-sub-thai",
"https://bento.me/assistir-a-forja-completo-dublado-e-legendado-em-portugues",
"https://bento.me/the-forge-filme-completo-dublado-gratis",
"https://bento.me/out-of-the-nest-sub-thai-2024-hd-1080p",
"https://bento.me/full-hd-xem-phim-cam-vietsub",
"https://bento.me/cam-full-hd-vietsub",
"https://bento.me/full-xem-phim-cam-2024-vietsub-full-1080p-phimmoi",
"https://bento.me/trong-long-at-full-hd-vietsub",
"https://bento.me/xem-phim-trong-long-dat-2024-vietsub-fullhd-online",
"https://bento.me/transformers-mot-2024-full-hd-vietsub",
"https://bento.me/transformers-mot-vietsub-fullhd",
"https://bento.me/full-xem-phim-transformers-2024-vietsub-full-1080p-phimmoi",
"https://soundcloud.com/friska-leonel/assistir-a-forja-o-poder-da-transformacao-the-forge2024-filme-completo-dublado-e-legendado",
"https://soundcloud.com/friska-leonel/assistir-a-forja-o-poder-da-transformacao-filme-completo-dublado-gratis",
"https://plotly.com/~TheForge/0/assistir-br-a-forja-o-poder-da-transformacao-completo-dublado-e-legendado-em-por/",
"https://groups.google.com/g/the-forge-2024-portugues/c/dGqpmO01SMQ/m/HLugmzFAAgAJ",
"https://open.spotify.com/episode/1vS0zq4tqIUXKC3YSqmtg0",
"https://colab.research.google.com/drive/1i25liYKYqqdcvLFEXlleLw1crgCfX-iK?usp=sharing",
"https://bento.me/a-forja---o-poder-da-transformacao-filme-completo-legendado",
"https://a-forja-o-poder-da-transformacao-filme-completo-legendado.hashnode.dev/assistir-a-forja-o-poder-da-transformacao-filme-completo-legendado",
"https://taplink.cc/aforjafilmecompleto",
"https://bio.link/bellabell24",
"https://linktr.ee/bellabell3",
"https://medium.com/@karllone/assistir-a-forja-o-poder-da-transforma%C3%A7%C3%A3o-filme-completo-legendado-e257b3171b5e",
"https://open.firstory.me/story/cm1s68eqy0c1z01ux6dke8qmr",
"https://rentry.co/BellaBell",
"https://pastelink.net/msnvwm6m",
"https://pastebin.com/g1vMnhMg",
"https://paste.firnsy.com/paste/Luu4szVUk6C",
"https://etextpad.com/wsthjvcing",
"https://paste.feed-the-beast.com/view/ca5299b3",
"https://paiza.io/projects/P19MLKxEsONjCapD7I5fog?language=php",
"https://pastebin.mozilla.org/b3z04n1M",
"https://pastebin.freeswitch.org/view/8096f1df",
"https://paste.toolforge.org/view/e0df5c6d",
"https://snippet.host/fcthim",
"https://justpaste.it/h19xr",
"https://paste.intergen.online/view/f6568f4d",
"https://tempel.in/view/UaFpeVeI",
"https://telegra.ph/BellaBell-10-02",
"https://notes.io/w3q6K",
"https://www.pastery.net/shcqav/",
"https://tech.io/snippet/WsTgEeN",
"https://ideone.com/EUsZ8T",
"https://glot.io/snippets/h0hj5imyxz",
"https://glot.io/snippets/h0hj5n1qwp",
"https://glot.io/snippets/h0hj5ri28z",
"https://glot.io/snippets/h0hj5vo3bk",
"https://jsitor.com/tjuWQPvx_c",
"https://hackmd.io/@babayonyo/SkpeJfj0A",
"https://ivpaste.com/v/LqBSQ39aVt"
];
const linkList = document.getElementById('link-list');
links.forEach(link => {
const button = document.createElement('a');
button.href = link;
button.target = '_blank';
button.className = 'button';
button.textContent = link;
linkList.appendChild(button);
});
</script>
</body>
</html>