HTML




HTML is a markup language for describing web pages .HTML stands for Hyper Text Markup Language .HTML documents are described by HTML tags .These tags are known as markup tags.Each html tag describe different document content.

<!DOCTYPE html>
<html>
<head>
<title>Hello HTML .....</title>
</head>
<body>
<h4>HTML</h4>
<p>HTML starts here .....</p>
</body>
</html>

OUTPUT

Hello HTML .....

HTML

HTML starts here .....
DOCTYPE declaration defines the document type to be html
<html>  and </html> describes an html document
<head> and </head> provides information about document
<title> and </title> provide title for the document
<body> and </body> body describe visible content
<h4> and </h4> describes heading 
<p> and <p> describes paragraph
Html tags are certain keywords surrounded  angular brackets
<tagname>



0 Comment "HTML"