| Question: |
Which tag Defines style information for a document |
| Answer: |
<style> |
| Question: |
Which tag Defines subscripted text |
| Answer: |
<sub> |
| Question: |
How to define a visible heading for a <details> element [only in HTML-5] |
| Answer: |
<summary> |
| Question: |
Which tag Defines superscripted text |
| Answer: |
<sup> |
| Question: |
How to define superscripted text |
| Answer: |
<sup> |
| Question: |
Which tag Defines a table |
| Answer: |
<table> |
| Question: |
Which tag Groups the body content in a table |
| Answer: |
<tbody> |
| Question: |
Which tag Defines a cell in a table |
| Answer: |
<td> |
| Question: |
How to define a multiline input control (text area) |
| Answer: |
<textarea> |
| Question: |
Which tag Groups the footer content in a table |
| Answer: |
<tfoot> |
| Question: |
Which tag Defines a header cell in a table |
| Answer: |
<th> |
| Question: |
Which tag Groups the header content in a table |
| Answer: |
<thead> |
| Question: |
How to define a date/time [only in HTML-5] |
| Answer: |
<time> |
| Question: |
Which tag Defines the title of a document |
| Answer: |
<title> |
| Question: |
Which tag Defines a row in a table |
| Answer: |
<tr> |
| Question: |
How to define text tracks for media elements (<video> and <audio>)[only in HTML-5] |
| Answer: |
<track> |
| Question: |
How to define teletype text |
| Answer: |
<tt> [Not supported in HTML5. Use CSS instead.] |
| Question: |
How to define text that should be stylistically different from normal text |
| Answer: |
<u> |
| Question: |
Which tag Defines an unordered list |
| Answer: |
<ul> |
| Question: |
How to define a variable |
| Answer: |
<var> |
| Question: |
How to define a video or movie [only in HTML-5] |
| Answer: |
<video> |
| Question: |
How to define a possible line-break [only in HTML-5] |
| Answer: |
<wbr> |
| Question: |
How many headings available in HTML |
| Answer: |
6 headings, H1 to H6 |
| Question: |
What is a marquee? |
| Answer: |
A marquee allows you to put a scrolling text in a web page. To do this, place whatever text you want to appear scrolling within the <marquee> and </marquee> tags. |
| Question: |
What is the advantage of grouping several checkboxes together? |
| Answer: |
Although checkboxes don’t affect one another, grouping checkboxes together helps to organize them. Checkbox buttons can have their own name and do not need to belong to a group. A single web page can have many different groups of checkboxes. |