It Work Shop

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

HTML Basic Tags

 Elementary Tags:
 <html>: The <html> tag represents the root of an
HTML document. It is mandatory for every
document.
 <head>: The <head> element is a container for
metadata and is placed between the <html> tag
and the <body> tag.
 <tittle>: The tittle tag is an HTML code that allows
you to give a web page tittle.
 <body>: The <body> tag defines the documents
body.

<html>
<head>
<tittle> Grow Through what you go
Through</tittle>
</head>

<body> Who said BTech is ease </body>

</html>
 Mandatory Tags:

You might also like