HTML is the standard markup language for creating Web pages.
<!DOCTYPE html>
declaration defines this document to be HTML5<html>
element is the root element of an HTML page<head>
element contains meta information about the document<title>
element specifies a title for the document<body>
element contains the visible page content<h1>
element defines a large heading<p>
element defines a paragraphHTML tags are element names surrounded by angle brackets:
<p>
and </p>
The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML documents and display them.
The browser does not display the HTML tags, but uses them to determine how to display the document:
The <!DOCTYPE>
declaration represents the document type, and helps browsers to display web pages correctly.
It must only appear once, at the top of the page (before any HTML tags).
The <!DOCTYPE>
declaration is not case sensitive.
The <!DOCTYPE>
declaration for HTML5 is:
Since the early days of the web, there have been many versions of HTML:
Version | Year |
---|---|
HTML | 1991 |
HTML 2.0 | 1995 |
HTML 3.2 | 1997 |
HTML 4.01 | 1999 |
XHTML | 2000 |
HTML5 | 2014 |
Required fields are marked *
Get all latest content delivered to your email free.