0
HTML
Please I need more clarification on how to use 'id' attribute.
2 Réponses
+ 3
The id attribute is used to assign a unique name to an HTML element. For example:
<p id="paragraph">Paragraph</p>
After this, the identifier can be used to determine the properties of the CSS.
#paragraph {
color: red;
}
0
đđČđ”đȘ đ Thank you.