<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Link Collection</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: auto;
background: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #007BFF;
transition: color 0.3s;
}
a:hover {
color: #0056b3;
}
button {
display: block;
margin: 20px auto;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>Link Collection</h1>
<ul id="linkList">
<!-- Links will be populated here -->
</ul>
<button id="toggleBtn">Toggle Links</button>
</div>
<script>
const links = [
"https://tinhte.vn/profile/xem-phim-cam-2024-1080-full-vietsub.3047387/",
"https://tinhte.vn/profile/xem-phim-moi-cam-online-full-hd-4k-vietsub.3047390/",
"https://tinhte.vn/profile/cam-2024-xem-phim-full-hd-vietsub-mien-phi.3047397/",
"https://tinhte.vn/profile/phim-cam-2024-full-hd-vietsub-thuyet-minh.3047495/",
"https://www.facebook.com/Cam.Vietsub.FullHD",
"https://www.facebook.com/Cam.FullHD.24",
"https://www.strava.com/clubs/1304618/posts/32564418",
"https://www.strava.com/clubs/1304618/posts/32564541",
"https://www.strava.com/clubs/1304618/posts/32564605",
"https://xemphimcam2024fullhdviets-shop.fourthwall.com/products/xem-phim-cam-2024-full-hd-vietsub",
"https://xemphimcam2024fullhdviets-shop.fourthwall.com/products/cam-fullhd-vietsub",
"https://xemphimcam2024fullhdviets-shop.fourthwall.com/products/cam-2024-phimmoi-vietsub",
"https://colab.research.google.com/drive/1aPrUtnQW_xapKYCAnG5b8ReXvpc-dfqB?usp=sharing",
"https://groups.google.com/g/cm-2024-phimmoi-vietsubcm-2024-phimmoi-vietsub/c/_-ghFq5WPes/m/PtIbVV1yBQAJ",
"https://soundcloud.com/cam-vietsub/xem-phim-cam-2024-full-hd-online-vietsub",
"https://soundcloud.com/cam-vietsub/phim-cam-vietsub-mien-phi-chat-luong-hd",
"https://open.spotify.com/episode/6BaPtY9yEXEXYO3VpPPhEX",
"https://gitlab.pavlovia.org/-/snippets/28678",
"https://gitlab.aicrowd.com/-/snippets/291225",
"https://bento.me/phimmoi-cam-vietsub-2024",
"https://phimmoi-cam-vietsub-2024.hashnode.dev/xem-phim-cam-2024-online-vietsub-full-hd",
"https://camvietsub1.statuspage.io/",
"https://taplink.cc/camvietsub",
"https://bio.link/camvietsub",
"https://linktr.ee/camvietsub",
"https://medium.com/@karllone/xem-phim-c%C3%A1m-2024-vietsub-thuy%E1%BA%BFt-minh-full-hd-42d44d04b416",
"https://open.firstory.me/story/cm1i62kn303ss01x15gas53j4",
"https://rentry.co/Baybyron",
"https://pastelink.net/vc7wkhfs",
"https://pastebin.com/VLxmC2SR",
"https://paste.firnsy.com/paste/5rhRj4tVMxN",
"https://etextpad.com/bh3tfaunvg",
"https://paste.feed-the-beast.com/view/a4c7ea84",
"https://paiza.io/projects/_yWiGiLXG-9DipMfZ_FZjQ?language=php",
"https://pastebin.mozilla.org/ddLuXPaA",
"https://paste.toolforge.org/view/a847c754",
"https://snippet.host/ccbzbq",
"https://justpaste.it/1z6dz",
"https://paste.intergen.online/view/b7baa511",
"https://tempel.in/view/EnIPA",
"https://telegra.ph/Baybyron-09-25",
"https://notes.io/w2b8i",
"https://www.pastery.net/mhstkr/",
"https://tech.io/snippet/QXIJXgW",
"https://glot.io/snippets/h09t2hkg9a",
"https://glot.io/snippets/h09t2rnl2o",
"https://glot.io/snippets/h09t2vuzde",
"https://glot.io/snippets/h09t316cwh",
"https://glot.io/snippets/h09t35u8om",
"https://jsitor.com/RgYCS1vkvY",
"https://hackmd.io/@babayonyo/HJxozRWRR",
"https://ivpaste.com/v/sYBhMAgalJ",
"https://jsfiddle.net/Abigaile/ze7scf15/2/"
];
const linkList = document.getElementById('linkList');
const toggleBtn = document.getElementById('toggleBtn');
function populateLinks() {
links.forEach(link => {
const listItem = document.createElement('li');
const anchor = document.createElement('a');
anchor.href = link;
anchor.textContent = link;
anchor.target = "_blank";
listItem.appendChild(anchor);
linkList.appendChild(listItem);
});
}
let linksVisible = true;
toggleBtn.addEventListener('click', () => {
linksVisible = !linksVisible;
linkList.style.display = linksVisible ? 'block' : 'none';
});
populateLinks();
</script>
</body>
</html>