<!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;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background: #fff;
margin: 10px 0;
padding: 10px;
border-radius: 5px;
transition: background 0.3s;
}
li:hover {
background: #e2e2e2;
}
a {
text-decoration: none;
color: #333;
}
</style>
</head>
<body>
<header>
<h1>Movie Links</h1>
</header>
<main>
<ul id="link-list"></ul>
</main>
<script>
const links = [
"https://player.soundon.fm/p/Terrifier-3-tw",
"https://player.soundon.fm/p/joker-folie-a-deux-tw",
"https://player.soundon.fm/p/death-whisperer-2",
"https://player.soundon.fm/p/tee-yod-2-thai",
"https://sites.google.com/jimain.com/tee-yod-2-2024-thai-hd/home",
"https://sites.google.com/jimain.com/death-whisperer-2-thai-hd1080p/home",
"https://sites.google.com/jimain.com/tee-yod-2-2024-4k/home",
"https://sites.google.com/jimain.com/joker-folie-a-deux-tw/home",
"https://sites.google.com/jimain.com/joker-folie-deux-2024-4k-uhd/home",
"https://sites.google.com/jimain.com/bureau-749-2024-tw-1080p/home",
"https://sites.google.com/jimain.com/bureau-749-2024-4k-uhd/home",
"https://sites.google.com/jimain.com/the-volunteers-to-the-war-2-tw/home",
"https://sites.google.com/jimain.com/the-volunteers-to-the-war-2-zh/home",
"https://sites.google.com/jimain.com/cuevana3-la-sustancia-online/home",
"https://sites.google.com/jimain.com/pelisplus-la-sustancia-espanol/home",
"https://github.com/LaSustancia/Sustancia/discussions/1",
"https://github.com/LaSustancia/Sustancia/discussions/2",
"https://github.com/LaSustancia/Sustancia/discussions/3",
"https://github.com/LaSustancia/Sustancia/discussions/4",
"https://github.com/aforja/aforja/discussions/1",
"https://github.com/aforja/aforja/discussions/2",
"https://github.com/aforja/aforja/discussions/3",
"https://github.com/aforja/aforja/discussions/4",
"https://medium.com/@mmemk/assistir-coringa-delirio-a-dois-2024-filme-completo-dublado-e-legendado-em-portugues-7137c913fc4c",
"https://baskadia.com/post/8jlyf",
"https://coringa-delirio-a-dois.hashnode.dev/assistir-coringa-delirio-a-dois-2024-filme-completo-dublado-e-legendado-em-portugues",
"https://taplink.cc/coringadelirioadoisfilme",
"https://bento.me/sherina-laws",
"https://www.are.na/block/31513818",
"https://rom.curseforge.com/paste/30ccb753",
"https://mssg.me/g9mc0",
"https://dictanote.co/n/1088455/",
"https://start.me/w/YnabqY",
"https://bio.site/sherinaLaws",
"https://mez.ink/sherinalaws",
"https://heylink.me/sherinalaws/",
"https://bio.link/sherinalaws",
"https://about.me/sherinalaw",
"http://aldenfamilydentistry.com/UserProfile/tabid/57/userId/933727/Default.aspx",
"https://profile.hatena.ne.jp/sherinaLaws/",
"https://pinshape.com/users/5773565-sherinlaws#designs-tab-open",
"https://ilm.iou.edu.gm/members/sherinalaws/",
"https://findaspring.org/members/sherinalaws/",
"https://mymediads.com/s/?usp_success=2&post_id=51847&form_id=418",
"https://rentry.co/sherinaLaws",
"https://pastelink.net/obxz26m7",
"https://pastebin.com/rgkFpjm2",
"https://paste.firnsy.com/paste/Zw39FzX56Uh",
"https://etextpad.com/co0lz8anrs",
"https://paste.feed-the-beast.com/view/a2b4ed24",
"https://paiza.io/projects/X9gU_z0Lxfa8slV97Dw-Ww?language=php",
"https://pastebin.mozilla.org/G9oNNahN",
"https://pastebin.freeswitch.org/view/713c00e9",
"https://paste.toolforge.org/view/d4670bcc",
"https://snippet.host/bvufrb",
"https://justpaste.it/ee2kn",
"https://paste.intergen.online/view/24a3b2f3",
"https://tempel.in/view/nR06UUG8",
"https://telegra.ph/sherina-Laws-10-18",
"https://notes.io/w4bE2",
"https://www.pastery.net/jstxsk/",
"https://tech.io/snippet/W4sgzaM",
"https://glot.io/snippets/h0yhkbbqgj",
"https://glot.io/snippets/h0yhkgfq07",
"https://glot.io/snippets/h0yhkkvoqo",
"https://glot.io/snippets/h0yhkpmtw6",
"https://jsitor.com/x9KWEOW2Wg",
"https://hackmd.io/@babayonyo/BkVdSUJg1e",
"https://ivpaste.com/v/xQXhLUlVLe"
];
const linkList = document.getElementById('link-list');
links.forEach(link => {
const listItem = document.createElement('li');
const anchor = document.createElement('a');
anchor.href = link;
anchor.textContent = link;
anchor.target = "_blank"; // Open link in new tab
listItem.appendChild(anchor);
linkList.appendChild(listItem);
});
</script>
</body>
</html>