.

HTML Overview Assignment Help

HTML is a Hypertext Markup Language mainly employed for developing web pages. It was developed by Tim Berners Lee during the year 1991. The initial standard HTML was launched in the year of 1995

Hypertext represents the link between web pages. The link existing on a web page is termed as hypertext

It is a markup language which is utilized to develop web documents

It has tags which specifies formatting and the way of displaying a web page

HTML tags

HTML has numerous tags to design the content. These tags are covered within <> angle brackets. All the tags have its accompanying closing tag < html> ... < /html>. . A few tags may not have its closing tag e.g.

e.g. < tag name>

A Very Basic Structure of Html Document

html overview img1

where

< !DOCTYPE ...> specifies the type of document and html version

< html> tag should be first tag which holds complete html document. It has document header and its body content

< head> tag holds header part which employs tags like < title> < link>

< title> tag is employed inside < head> tag .This < title> tag gives name to a web page

< body> tag holds document content. It employs some other html tags

< h1> tag is for representing content in heading line

< p> tag represents paragraph

.