Share
<!DOCTYPE> Is Mandatory
An XHTML document consists of three main parts:
- the DOCTYPE declaration
- the <head> section
- the <body> section
The basic document structure is:
<!DOCTYPE ...>
<html>
<head>
<title>... </title>
</head>
<body> ... </body>
</html>
Note: The DOCTYPE declaration is always the first line in an XHTML document!