81

HTML tags are enclosed in which signs?

A.
B.
C.
D.
Answer & Solution
Solution:

HTML tags are enclosed in angle brackets (< and >). For example, <html>, <body>, <p>, etc.

82

Which of the following tag is used to define options in a dropdown list within <select> or <datalist> element?

A.
B.
C.
D.
Answer & Solution
Solution:

The <option> tag is used inside <select> and <datalist> tags to define the individual items in a dropdown list.

83

How to create a checkbox in HTML?

A.
B.
C.
D.
Answer & Solution
Solution:

The <input> tag with type="checkbox" is used to create a checkbox input field in a form.

84

Which of the following tag is used to make the underlined text?

Answer & Solution
Solution:

The <u> tag is used to underline text in HTML, though it is considered somewhat outdated, and using CSS (text-decoration: underline;) is a better practice.

85

<input> is -

A.
B.
C.
D.
Answer & Solution
Solution:

The <input> tag is a self-closing (void) tag, meaning it does not require a closing tag. It is used for creating form controls like text fields, checkboxes, and buttons.

86

In which of the following way background color in HTML can be added?

A.
B.
C.
D.
Answer & Solution
Solution:

The bgcolor attribute is used in older HTML versions (specifically with the <marquee> tag) to set the background color of an element. However, using CSS is the recommended way to set background colors in modern HTML.

87

Which of the following is used to insert an image in HTML?

A.
B.
C.
D.
Answer & Solution
Solution:

The <img> tag is used to display an image in HTML. The src attribute specifies the path to the image file.

88

Which of the following tag is used for making the text italic in HTML?

A.
B.
C.
D.
Answer & Solution
Solution:

The <i> tag is used to italicize text. Similarly, the <em> tag is used to emphasize text (also typically rendered in italics).

89

Which of the following tag is used to create an ordered list (numerical or alphabetical) in HTML?

Answer & Solution
Solution:

The <ol> tag is used to create an ordered list, which displays list items in a numerical or alphabetical sequence.

90

How to create a hyperlink in HTML?

A.
B.
C.
D.
Answer & Solution
Solution:

The <a> tag is used to create hyperlinks. The href attribute specifies the URL the link points to. The text between the opening and closing <a> tags becomes the clickable link.