Question
Easy

In HTML Version-5, the _______ declaration tag is used by the web browser to understand the version of the HTML:

1
<!DOCTYPE html>
2
<$DOCUMENT html>
3
<#DOCTYPE html>
4
<#DOC html>
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Web Designing using HTML
Topic: HTML Basics
Correct Answer
Option A
Explanation

The correct option is (1): The tag \ is the mandatory and only required Document Type Declaration (DOCTYPE) for all HTML5 documents. Its primary purpose is to inform the web browser about the document's structure and the HTML version it is based on, prompting the browser to use the correct rendering logic, known as "standards mode." This is a crucial first line of code that must appear before the…Read More