HTML Introduction
HTML Introduction
‹ Previous Next ›
HTML Tutorial
HTML HOME
HTML Introduction
HTML is the standard markup language for creating
HTML Editors Web pages.
HTML Basic
HTML Elements
HTML Attributes
HTML Headings
What is HTML?
HTML Paragraphs
HTML stands for Hyper Text Markup Language
HTML Styles HTML is the standard markup language for creating
HTML Formatting Web pages
HTML Quotations HTML describes the structure of a Web page
HTML Comments HTML consists of a series of elements
HTML Colors HTML elements tell the browser how to display the
HTML CSS content
HTML elements label pieces of content such as "this
HTML Links is a heading", "this is a paragraph", "this is a link",
HTML Images etc.
HTML Favicon
HTML Page Title
HTML Tables
HTML Lists
A Simple HTML Document
HTML Block & Inline
HTML Div
HTML Classes Example
HTML Id
HTML Iframes <!DOCTYPE html>
HTML JavaScript <html>
<head>
HTML File Paths
<title>Page Title</title>
</head>
<body>
Try it Yourself »
Example Explained
The <!DOCTYPE html> declaration defines that Powered
Recommended
by
this document is an HTML5 document
videos Snigel
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)
ADVERTISEM
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 ADVERTISEMENT
Web Browsers
The purpose of a web browser (Chrome, Edge, Firefox,
Safari) is to read HTML documents and display them
correctly.
A browser does not display the HTML tags, but uses them
to determine how to display the document:
<html>
<head>
<title>Page title</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
HTML History
Since the early days of the World Wide Web, there have
been many versions of HTML:
Year Version
?
Exercise
What does HTML stand for?
Submit Answer »
‹ Previous Next ›
ADVERTISEMENT
ADVERTISEMENT