BigBinary Academy
HTML
Basic Structure
10.6
Search
Lesson
10.6
Document Structure
The basic structure of every HTML document is as follows:
A
<!DOCTYPE>
declaration
An
<html>
element, which is the root HTML element that holds all the other elements.
A
<head>
element, which contains information about the document.
A
<body>
element, which contains the actual content displayed in the browser.
Previous
Next