0% found this document useful (0 votes)
3 views

Basic HTML5 Structure

HTML5 is the latest version of the Hypertext Markup Language used to create web pages, introducing new features for front-end development. The basic structure of an HTML document includes the <!DOCTYPE html> declaration, <html>, <head>, <title>, and <body> elements. These elements define the document's structure, meta-information, and visible content.

Uploaded by

Suman Das
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Basic HTML5 Structure

HTML5 is the latest version of the Hypertext Markup Language used to create web pages, introducing new features for front-end development. The basic structure of an HTML document includes the <!DOCTYPE html> declaration, <html>, <head>, <title>, and <body> elements. These elements define the document's structure, meta-information, and visible content.

Uploaded by

Suman Das
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 5

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

You might also like