هذا المتصفح لا يدعم عرض ملفات PDF. ⬇️ تحميل ملف PDF 🔙 العودة لصفحة العربية للسنة ثانية متوسط فروض العربية السنة الثانية متوسط الثلاثي الأول body { font-family: 'Cairo', sans-serif; background: #f0f4f8; padding: 30px; } h2 { text-align: center; color: #2a8d6c; margin-bottom: 30px; } .post-list { max-width: 700px; margin: auto; display: flex; flex-direction: column; gap: 15px; } .post-card { background: #ffffff; padding: 15px 20px; border-radius: 12px; display: flex; align-items: center; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); transition: transform 0.2s ease, box-shadow 0.2s ease; } .post-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); background: #f8fff8; } .post-icon { width: 28px; height: 28px; margin-left: 15px; flex-shrink: 0; } .post-link { text-decoration: none; color: #333; font-weight: bold; font-size: 17px; } .post-link:hover { color: #2a8d6c; } @media (max-width: 600px) { .post-card { flex-direction: row; font-size: 15px; } .post-icon { width: 24px; height: 24px; margin-left: 10px; } } 📚 فروض العربية سنة ثانية متوسط الفصل الاول جاري تحميل الملفات... const tagSlug = 'فروض-العربية-سنة-ثانية-متوسط-الفصل-الأول'; const siteURL = 'https://dztests.com'; async function fetchPostsByTag() { try { const tagRes = await fetch(`${siteURL}/wp-json/wp/v2/tags?slug=${encodeURIComponent(tagSlug)}`); const tags = await tagRes.json(); if (!tags.length) { document.getElementById("postList").innerHTML = "لم يتم العثور على هذا الوسم."; return; } const tagId = tags[0].id; const postRes = await fetch(`${siteURL}/wp-json/wp/v2/posts?tags=${tagId}&per_page=10`); const posts = await postRes.json(); let listHTML = ""; posts.forEach(post => { listHTML += ` ${post.title.rendered} `; }); document.getElementById("postList").innerHTML = listHTML; } catch (error) { document.getElementById("postList").innerHTML = "حدث خطأ أثناء تحميل المقالات."; } } fetchPostsByTag();