71
Which of the following is used to create a list using the lowercase letters?
A.
B.
C.
D.
Answer & Solution
The
type="a" attribute in the <ol> tag creates an ordered list with lowercase
letters (a, b, c, ...).
72
What are the types of unordered list in HTML?
A.
B.
C.
D.
Answer & Solution
Unordered
lists in HTML can display items with three different types of bullets: disc, circle,
and square.
This is set via CSS.
73
Which of the following is the right way to create background image in HTML?
A.
B.
C.
D.
Answer & Solution
The background attribute within the <body> tag can be used in older HTML versions to set a
background image. For modern practices, CSS should be used instead: body { background-image: url('img.png'); }.
74
Which of the following tag is the container for <tr>, <th>, and <td> elements?
A.
B.
C.
D.
Answer & Solution
The <table> tag is the container for table elements. It
holds the rows (<tr>), header cells (<th>), and data cells (<td>).
75
Which of the following is the correct way to send e-mail in HTML?
A.
B.
C.
D.
Answer & Solution
The mailto: link allows users to open their default email client with a pre-filled
recipient email address. Example: <a
href="mailto:abc@yz">Send Email</a>.
76
Which of the following HTML tag is used to specify pre-formatted texts?
A.
B.
C.
D.
Answer & Solution
The <pre> tag is used to display pre-formatted text, where whitespace and line
breaks are preserved.
77
Which of the following HTML tag is used to scroll the image automatically or text in up, down, left, and right direction?
A.
B.
C.
D.
Answer & Solution
The <marquee> tag is used to create scrolling text or images
in HTML. However, this tag is deprecated in HTML5, and using CSS animations or
JavaScript is recommended for such effects.
78
Which of the following attribute is used to specify a unique id for an element of the HTML document?
A.
B.
C.
D.
Answer & Solution
The
id
attribute is used to specify a unique identifier for an element in HTML. This
can be useful for styling or targeting elements with JavaScript.
79
The <hr> tag in HTML is used for -
A.
B.
C.
D.
Answer & Solution
The
<hr> tag is used to create a horizontal rule or line
across the page, often used to separate content sections.
80
Which of the following tag in HTML is used to define the rows in the table?
A.
B.
C.
D.
Answer & Solution
The
<tr> tag defines a table row. The table data cells
within a row are defined by <td>, and headers within a row use the <th> tag.
