<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Link List</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
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;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #007bff;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Link List</h1>
<ul id="link-list"></ul>
</div>
<script>
const links = [
"https://www.facebook.com/Teeyood",
"https://www.facebook.com/Teeyod2th",
"https://www.facebook.com/LaSustanciaEspanol",
"https://www.facebook.com/RobotSalvajeEspanol",
"https://www.facebook.com/LamGiauVoiMaViet",
"https://www.facebook.com/ElHoyo2Espanol",
"https://www.facebook.com/FULL.1080P.TeeYod.Vietsub.Thuyet.Minh",
"https://www.facebook.com/DeathWhisperer2HD",
"https://www.facebook.com/latMat7MotIeuUoc",
"https://www.facebook.com/JokerDienCoDoi",
"https://bento.me/assistirrobo-selvagem-2024-filme-completo-dublado-gratis",
"https://bento.me/assistir-robo-selvagem-hd-filmecompleto-dublado-em-pt-portugues",
"https://bento.me/assistir-terrifier-3-hd-filmecompleto-dublado-em-pt-portugues",
"https://bento.me/assistirterrifier-3-2024-filme-completo-dublado-gratis-terrifier-3-2024-flme-competo",
"https://bento.me/assistir-tudo-por-um-pop-star-2-2024-filme-completo-dublado-gratis",
"https://bento.me/assistir-tudo-por-um-pop-star-2-online-gratis",
"https://baskadia.com/post/8jkl6",
"https://upcomingmoviestowatchin20241.statuspage.io/",
"https://factsplat.com/users/6f9483ab-43c7-42ad-adc9-d9769489ba5e",
"https://taplink.cc/upcomingmoviestowatchin2024",
"https://heylink.me/CreativeCreator24/",
"https://linkr.bio/alexsandra2",
"https://linktr.ee/alexsandra152",
"https://mez.ink/alexsandra10",
"https://magic.ly/Alexsandra2",
"https://open.spotify.com/episode/7GPVzHoUeoO6HfqSKds2XE",
"https://open.firstory.me/story/cm27vuq2a005301v0b5nn24gh",
"https://direct.me/alexsandra",
"https://upcoming-movies-to-watch-in-2024.hashnode.dev/upcoming-movies-to-watch-in-2024",
"https://medium.com/@karllone/upcoming-movies-to-watch-in-2024-4ab977c8d9ba",
"https://rom.curseforge.com/paste/fd09f8e8",
"https://dictanote.co/n/1085023/",
"https://rentry.co/Alexsandra",
"https://pastelink.net/htd2rqt9",
"https://pastebin.com/QgdfrFEu",
"https://paste.firnsy.com/paste/EApTnU2svQf",
"https://etextpad.com/sl0fmaqlvo",
"https://paste.feed-the-beast.com/view/65178763",
"https://paiza.io/projects/x61XGTA9AEUHuWPxCpKOgw?language=php",
"https://pastebin.mozilla.org/vLK7n1Ra",
"https://pastebin.freeswitch.org/view/ea7f7876",
"https://paste.toolforge.org/view/6821cf7d",
"https://snippet.host/iqvsnk",
"https://justpaste.it/68dmk",
"https://paste.intergen.online/view/bc00b56b",
"https://tempel.in/view/1tp",
"https://telegra.ph/Alexsandra-10-13",
"https://notes.io/w3Wsw",
"https://www.pastery.net/xwgefp/",
"https://tech.io/snippet/IPC2FiR",
"https://glot.io/snippets/h0tnidunb9",
"https://glot.io/snippets/h0tnijexhi",
"https://glot.io/snippets/h0tnioqfyy",
"https://glot.io/snippets/h0tniuf77o",
"https://jsitor.com/-kj9spVUUU",
"https://hackmd.io/@babayonyo/rJGDaKFyJg",
"https://ivpaste.com/v/CJqZ25C5kN",
"https://jsfiddle.net/mkoeyLud/"
];
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 in new tab
listItem.appendChild(anchor);
linkList.appendChild(listItem);
});
</script>
</body>
</html>