1.

Root Element in HTML

Answer»

  • <html>...</html>: The root (top-level element) of an HTML page is represented by the <html> element or the <html> tag. This element must be the ancestor of all other elements. The structure of any HTML file showing the usage of the <html> element is shown below:
<!DOCTYPE html>
<html lang="en">
<head>...</head>
<body>...</body>
</html>

The structure of an HTML document is shown below:




Discussion

No Comment Found