- يمكن أن تحتوي جميع عناصر HTML على سمات
- توفر السمات معلومات إضافية حول العناصر
- يتم تحديد السمات دائمًا في علامة البداية
- تأتي السمات عادةً في أزواج اسم/قيمة مثل: name="value"
مثال :
<! -- The href Attribute -->
<a href='https://www.example.com'>Visit example</a>
<! -- The src Attribute -->
<img src='img_girl.jpg'>
<! -- The width and height Attributes -->
<img src='img_girl.jpg' width='500' height='600'>
<! -- The alt Attribute -->
<img src='img_girl.jpg' alt='Girl with a jacket' >
<! -- The style Attribute -->
<p style='color:red;'>This is a red paragraph.</p>
<! -- The title Attribute -->
<p title='I'm a tooltip'>This is a paragraph.</p>