Quiz - HTML: Difference between revisions

From ProgZoo
Jump to navigation Jump to search
No edit summary
No edit summary
Line 30: Line 30:
     <div class=d>Attribute value</div>
     <div class=d>Attribute value</div>
     <div class='d y'>Closing tag</div>
     <div class='d y'>Closing tag</div>
    <div class='d'>Entity</div>
    <div class='d'>Tag name</div>
  </div>
  <div class=q>The term <code>div</code> is best described as:
    <div class='d y'>Attribute name</div>
    <div class=d>Attribute value</div>
    <div class='d'>Closing tag</div>
     <div class='d'>Entity</div>
     <div class='d'>Entity</div>
     <div class='d'>Tag name</div>
     <div class='d'>Tag name</div>

Revision as of 21:05, 6 September 2021

Consider the html fragment

<div style='color:red'>This &amp; that</div>
1.The term style is best described as:
Attribute name
Attribute value
Closing tag
Entity
Tag name
2.The term &amp; is best described as:
Attribute name
Attribute value
Closing tag
Entity
Tag name
3.The term </div> is best described as:
Attribute name
Attribute value
Closing tag
Entity
Tag name
4.The term 'color:red' is best described as:
Attribute name
Attribute value
Closing tag
Entity
Tag name
5.The term div is best described as:
Attribute name
Attribute value
Closing tag
Entity
Tag name