HTML


51) 

Which of the following is known as the first web browser?

Answer: D) Nexus
Explanation

The first web browser is generally considered to be WorldWideWeb (later renamed Nexus), which was created by Sir Tim Berners-Lee.


52) 

Which of the following is used to read a HTML page and render it?

Answer: C) Web Browser
Explanation


53) 

Which of the following is not an empty tag?

Answer: A) <p/>
Explanation

<p> is not a empty or stand along tag in html.


54) 

Which of the following is the correct HTML width attribute and its value?

Answer: B) width="90"
Explanation


55) 

Which of the following are table tags?

Answer: B) table, thead, tr, td
Explanation


56) 

Choose the correct tag for the largest heading in HTML

Answer: D) h1
Explanation

<h1> is the largest heading tag in html


57) 

What is the purpose of the <img> element in HTML?

Answer: C) To display images on a web page
Explanation

The <img> element is used to display images on a web page mcqs.


58) 

Which HTML element is used to create a hyperlink?

Answer: C) <a>
Explanation

The <a> (anchor) element is used to create hyperlinks in HTML


59) 

What is the correct way to comment out multiple lines in HTML?

Answer: A) <!-- This is a comment -->
Explanation

In HTML, comments are enclosed within <!-- and --> to comment out multiple lines.


60) 

Which HTML tag is used to define the structure of an HTML document, including the head and body sections?

Answer: D) <html>
Explanation

The <html> tag is the root element of an HTML document, containing the head and body sections.