Menu
Document Structure & Metadata
<html> Root Element
The container for the entire document.
1The Root
The <html> tag wraps every other element. Always set the lang attribute so screen readers and search engines know the language.
Example Code
<!DOCTYPE html>
<html lang="en">
<head>...</head>
<body>...</body>
</html>Finished reading?
Mark this topic as complete to track progress.