HTML <html>
query_builder | Christopher PisaniThe HTML element <html> is the top level element in an HTML document. No data should be outside of this element other than the <!doctype> that represents the <html> and data within.
Example :
<!DOCTYPE html>
<html lang="en">
<head>...</head>
<body>...</body>
</html>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.