HTML (HYPERTEXT MARKUP
LANGUAGE)
Html is the standard markup language and most basic bulding
block for the documnet designed to be displayed in the browser.
It defines the content and structure of web content. Html uses
markup to annotate text, images, videos, audios, links, headings,
paragraph, forms and lists can be created by using tags.
Tags defines how your browers must format and dispaly your
web page.
All tags contain to two parts
· An opening tag < >
· A closing tag </ >
History
The html version was writthen by Tim Berner's Lee in 1993.
Basic Structure
· <!Doctype html> Define the html version 5
· <Html> Defines the root of an html document
· <Head> Contains meta-information about the document,
such as title, links to stylesheet etc.
· <Title> Sets the title of the document (shown in the
browser's tab).
· <Body> Contains the content of the document.