HTML Tutorial
تستخدم العلامة <figcaption>
لتوفير عنوان وصفي لشكل من أشكال المحتوى المرئي، مثل صورة أو جدول أو رسم بياني.
<figcaption>
على سمات محددة.<figcaption>
:<figure>
<img src="image.jpg" alt="صورة">
<figcaption>هذا هو وصف الصورة.</figcaption>
</figure>
<figure>
<table>
<thead>
<tr>
<th>الاسم</th>
<th>الوظيفة</th>
</tr>
</thead>
<tbody>
<tr>
<td>احمد</td>
<td>مطور</td>
</tr>
</tbody>
</table>
<figcaption>هذا هو وصف الجدول.</figcaption>
</figure>
<figcaption>
:<!DOCTYPE html>
<html>
<body>
<figure>
<img src="image.jpg" alt="صورة">
<figcaption>هذا هو وصف الصورة.</figcaption>
</figure>
</body>
</html>