/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { /* إنشاء عنصر لتحميل الخط من ملف CSS الخارجي */ let fontLink = document.createElement("link"); fontLink.rel = "stylesheet"; fontLink.href = "https://bb.codecraft.sa/bbstylesheet.css"; /* استبدل بالرابط الصحيح لملف الخط */ /* إضافة الـ إلى في الصفحة*/ document.head.appendChild(fontLink); // عند تحميل الخط، يتم تطبيقه على جميع العناصر النصية fontLink.onload = function () { document.body.style.fontFamily = "'BrokenBox', sans-serif"; /* تطبيق الخط على كل العناصر النصية في الصفحة*/ let textElements = document.querySelectorAll("h1, h2, h3, h4, h5, h6, p, span, a, button, div, textarea, select, input"); textElements.forEach(el => { el.style.fontFamily = "'BrokenBox', sans-serif"; }); console.log("✔️ تم تحميل الخط BrokenBox بنجاح وتطبيقه على الصفحة."); }; /* في حال فشل تحميل الخط */ fontLink.onerror = function () { console.error("❌ فشل تحميل الخط BrokenBox، تأكد من صحة الرابط."); }; });