Basic
Structure of
an HTML5 •Suman Das
Document •Paper Name : Basics of Web Design
Using Html, CSS, Java Script
•Paper Code : BCAC202
•University Roll
Number :111111111111
Introduction to HTML5
HTML5 is the latest version of the Hypertext Markup
Language (HTML), which is the standard language used
to create web pages. It is a markup language that
defines the structure and content of a web page. HTML5
introduced several new features and elements that
enhance the capabilities of front-end development.
Basic Structure of an HTML
Document
An HTML document consists of several parts that define its structure and content. Here is the
basic structure of an HTML document:
<!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.
The <body> element
contains the visible
The <title> element sets
content of the web page,
the title of the web page.
such as text, images,
links, and multimedia.
HTML5
Semantic
Elements