Which tag is used to enclose the entire html code for a page
Answers
Answered by
10
Answer:
The HTML Document / Root element <html> is used to enclose all of the HTML content on a page.
It is preceded by <!doctype html> which is the simple doctype used in HTML 5 and above.
Explanation:
Example -
<!doctype html>
<html>
html code will be written here
</html>
Answered by
5
<html> tag is used enclose the entire html code for a page.
Explanation:
- The <html> is used to designing the static webpage. Here <html> is the root element of the to develop any Html website. The. HTML indicated that the particular website is made in HTML language.
- Following are the syntax of HTML
<html> ! open of html tag
<head>
</head>
<body>
</body>
</html> ! closing of html tag
Learn More:
- https://brainly.in/question/2500440
Similar questions