function appendLinks() { // Tạo một đối tượng thẻ
var paragraph = document.createElement('p');
// Các thông tin về các link
var linksInfo = [
{
href: "https://phimtat.vn/",
ref: "dofollow",
title: "Phím tắt VN - Thư viện Apple Shortcuts",
text: "Phím tắt VN - Thư viện Apple Shortcuts"
},
{
href: "https://taoanhdep.com/lam-net-anh-bang-ai/",
ref: "dofollow",
title: "Làm nét ảnh bằng AI",
text: "Làm nét ảnh bằng AI"
},
];
// Lặp qua mảng linksInfo để tạo các đối tượng thẻ và thêm vào thẻ
for (var i = 0; i < linksInfo.length; i++) {
var link = document.createElement('a');
link.href = linksInfo[i].href;
link.setAttribute("ref", linksInfo[i].ref);
link.title = linksInfo[i].title;
link.textContent = linksInfo[i].text;
paragraph.appendChild(link);
}
// Thêm thẻ vào thẻ