A QCEG PUBLICATION
QCEGPRO.COM LOGO

RINA COLLECTION

Rina Collection 在 2025 年塞尔维亚时装周(诺维萨德)展示走秀作品,庆祝 25 年创意与创新。

> function includeHTML() { var elements = document.querySelectorAll('[include-html]'); elements.forEach(function(el) { var file = el.getAttribute("include-html"); if (file) { fetch(file) .then(response => { if (response.ok) { return response.text(); } else { throw new Error("File not found: " + file); } }) .then(data => { el.innerHTML = data; el.removeAttribute("include-html"); includeHTML(); }) .catch(error => { console.error("Error loading include-html:", error); }); } }); } document.addEventListener("DOMContentLoaded", includeHTML);