What is doctype html
Answers
Answered by
0
<!Doctype> basically tells the browser about the version of html being used.
Explanation:
The HTML syntax of HTML5 requires a DOCTYPE to be specified to ensure that the browser renders the page in standards mode.
Answered by
2
Explanation:
<!DOCTYPE html >
<html >
<head>
<title >
answer </title >
</head >
<body>
body of the page
</body>
</html >
Similar questions