Introduction To HTML
Introduction To HTML
Menu Upgrade
HTML Introduction
‹ Previous Next ›
What is HTML?
HTML stands for Hyper Text Markup
Language
HTML is the standard markup language
for creating Web pages
HTML describes the structure of a Web
page
HTML consists of a series of elements
HTML elements tell the browser how to
display the content
HTML elements label pieces of content
such as "this is a heading", "this is a
paragraph", "this is a link", etc.
Example
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
</body>
</html>
Try it Yourself »
Example Explained
The <!DOCTYPE html> declaration
defines that this document is an HTML5
document
The <html> element is the root
element of an HTML page
The <head> element contains meta
information about the HTML page
The <title> element specifies a title
for the HTML page (which is shown in
the browser's title bar or in the page's
tab)
The <body> element defines the
document's body, and is a container for
all the visible contents, such as
headings, paragraphs, images,
hyperlinks, tables, lists, etc.
The <h1> element defines a large
heading
The <p> element defines a paragraph
ADVERTISEMENT
Amnesty International
Open
Web Browsers
The purpose of a web browser (Chrome,
Edge, Firefox, Safari) is to read HTML
documents and display them correctly.
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a
heading</h1>
<p>This is a paragraph.
</p>
<p>This is another
paragraph.</p>
</body>
</html>
HTML History
Since the early days of the World Wide Web,
there have been many versions of HTML:
Year Version
‹ Previous Next ›
ADVERTISEMENT
COLOR PICKER
ADVERTISEMENT
Spaces
Upgrade
Newsletter
Get Certified
Report Error
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference
Top Examples
HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
Java Examples
XML Examples
jQuery Examples
Get Certified
HTML Certificate
CSS Certificate
JavaScript Certificate
Front End Certificate
SQL Certificate
Python Certificate
PHP Certificate
jQuery Certificate
Java Certificate
C++ Certificate
C# Certificate
XML Certificate
FORUM | ABOUT