<!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: #f0f0f0;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
padding: 10px;
margin: 10px 0;
background-color: #e9e9e9;
border-radius: 5px;
}
a {
text-decoration: none;
color: #007BFF;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Movie Links</h1>
<ul id="linkList">
<!-- Links will be populated here by JavaScript -->
</ul>
</div>
<script>
const links = [
"https://bento.me/bureau749-hd-tw-2024",
"https://bento.me/bureau-749-tw-hk",
"https://bento.me/bureau-749-2024-twhk",
"https://bento.me/the-volunteers-the-battle-of-life-and-death-2024-tw",
"https://bento.me/the-volunteers-the-battle-of-life-and-death-2024-twhk",
"https://bento.me/the-volunteers-the-battle-of-life-and-death-hd-tw-2024",
"https://bento.me/the-wild-robot-2024-tw",
"https://bento.me/the-wild-robot-2024-twhk",
"https://bento.me/tw-the-wildrobot-fullversion-4k",
"https://bento.me/venom-the-last-dance-2024-tw",
"https://bento.me/venom-the-last-dance-2024-twhk",
"https://bento.me/joker-folie-a-deux-2024-tw",
"https://bento.me/joker-folie-a-deux-2024-twhk",
"https://bento.me/joker-folie-a-deux-2024-uhd-1080p",
"https://bento.me/assistir-coringa-delirio-a-dois-2024-filme-completo-em-portugues-dublado-gratis",
"https://bento.me/assistir-filme-a-forja-o-poder-da-transformacao-2024-completo-online-dublado-e-legendado-gratis",
"https://bento.me/martin-2024-tw",
"https://www.facebook.com/TheSisters.Cam.vietsub/",
"https://www.facebook.com/AForja.Filmes.online/",
"https://www.facebook.com/CoringaDelirioaDois.filmes/",
"https://factsplat.com/users/4ae02b0f-450d-4d5c-98ab-14e64f7248cd",
"https://open.spotify.com/episode/4jEQEBiDhOGslUjgUWPxaF",
"https://taplink.cc/coringadeirioadoisfilmes",
"https://heylink.me/vivianregina/",
"https://linkr.bio/coringadeirioadoisfilmes",
"https://linktr.ee/coringadeirioadoisfilmes",
"https://mez.ink/coringadeirioadoisfilmes",
"http://magic.ly/CoringaDeirioaDoisfilmes",
"https://linksome.me/coringadeirioadoisfilmes",
"https://www.are.na/block/31186906",
"https://bio.link/coringadeirioadois",
"https://open.firstory.me/story/cm1w5hzcs09dz01u036oiaiwf",
"https://coringadeirioadoisfilmes.hashnode.dev/assistir-coringa-delirio-a-dois-online2024-filme-competo-dublado-em-portugues",
"https://medium.com/@karllone/assistir-coringa-del%C3%ADrio-a-dois-2024-filme-completo-em-portugu%C3%AAs-dublado-gratis-68e0e994d89b",
"https://gitlab.pavlovia.org/-/snippets/32440",
"https://gitlab.aicrowd.com/-/snippets/293667",
"https://rom.curseforge.com/paste/a0c15820",
"https://dictanote.co/n/1080228/",
"https://rentry.co/viviregina",
"https://pastelink.net/jwrb3ina",
"https://pastebin.com/dmmijfjx",
"https://paste.firnsy.com/paste/tfiv2lrn2dk",
"https://etextpad.com/k7qsockr7t",
"https://paste.feed-the-beast.com/view/598ca622",
"https://paiza.io/projects/vxXIumDCrNu4LPWO4eCQaw",
"https://pastebin.mozilla.org/rf3pitvq",
"https://pastebin.freeswitch.org/view/fe197e7e",
"https://paste.toolforge.org/view/945fd95b",
"https://snippet.host/hhimsy",
"https://justpaste.it/e0xl8",
"https://paste.intergen.online/view/8fa7262c",
"https://telegra.ph/viviregina-10-05",
"https://tempel.in/view/Cu5",
"https://notes.io/w3jgu",
"https://www.pastery.net/bekqap/",
"https://tech.io/snippet/HUYRs3d",
"https://ideone.com/moTyTg",
"https://glot.io/snippets/h0kneg738n",
"https://glot.io/snippets/h0knev1jsb",
"https://glot.io/snippets/h0knf1tju2",
"https://glot.io/snippets/h0knfuxwxv",
"https://jsitor.com/5zTvYr4pxF",
"https://hackmd.io/@By-trQ43Tl6jEhUdVVJUfA/BJ_Yc6R0R",
"https://ivpaste.com/v/keMB1O50JB",
"https://jsfiddle.net/vivianregina/m9L4w07o/"
];
const linkList = document.getElementById("linkList");
links.forEach(link => {
const li = document.createElement("li");
const a = document.createElement("a");
a.href = link;
a.textContent = link;
a.target = "_blank"; // Open link in a new tab
li.appendChild(a);
linkList.appendChild(li);
});
</script>
</body>
</html>