HTML
HTML
Markup Language)
What is HTML?
HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language
HTML describes the structure of Web pages using markup
HTML elements are the building blocks of HTML pages
HTML elements are represented by tags
HTML tags label pieces of content such as “heading”, “paragraph”, “table”, and
so on
Browsers do not display the HTML tags, but use them to render the content of the
page.
HTML Basic Structure
Structure Explained
The <!DOCTYPE html> declaration defines this document to the
HTML5
The <html> element is the root of element of an HTML page
The <head> element contains meta information the document
The <head> element specifies a title for the document
The <body> element contain the visible page content
<head> A container for all the head elements (title, scripts, styles,
meta information, and more)
The<h1> element defines a large heading
The <p> element defines a paragraph
HTML formatting elements
HTML also defines special elements for defining text with a special meaning.
HTML uses elements like <b> and <i> for formatting output, like bold or italic
text. Formatting elements were designed to display special types of text: