Element & Tags
Primary Elements
An HTML document include one catch-all element - namely html
element. The html
element in turn includes within itself two elements: head
and body
. Generally, all HTML documents have the following structure.
<!DOCTYPE html>
<html>
<head>
...
</head>
<body>
...
</body>
<html>