html-syntax Flashcards

1
Q

Give five examples of HTML element tags.

A

<p>
<br></br>
</p>

<h1>-<h6>
</h6></h1>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the purpose of HTML attributes?

A

HTML attributes provide additional information about HTML elements. Usually com ein pairs like name-value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give an example of an HTML entity (escape character).

A
&amp; → &amp; (ampersand, U+0026)
< → < (less-than sign, U+003C)
> → > (greater-than sign, U+003E)
" → " (quotation mark, U+0022)
' → ' (apostrophe, U+0027)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly