Basic HTML5 Structure
Basic HTML5 Structure
Structure of
an HTML5 •Suman Das
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
The website content goes here
</body>
</html>
The <head> element is
The <!DOCTYPE
The <html> element is used to define meta-
html> declaration
the root element and information about the
specifies the HTML
contains the entire HTML web page, such as the
version used, which is
document. title displayed in the
HTML5 in this case.
browser’s title bar.