HTML ( Hyper Text Mark Up Language )

blog

HTML is used to create web pages and websites. HTML elements or tags tells the browser how to display the content. it describes the basic layout or structure of webpage

Example of html Basic code :

<html>
<head>
<title> Title of page </title>
</head>
<body>

<h1>Heading tag , is used to provide heading to html </h1>
<p> paragraph tag </p>
</body>
</html>

Description of tags 

<html> tag is the root element of an HTML page
<head> tag contains meta information about the HTML page
<title> tag specifies a title for the HTML page which shows on browser tab.
<body> tag defines the page body, and it contains all the tags such as headings, table, paragraphs, images etc.
<h1> tag is the heading tag
<p> defines the paragraph

 

Leave a Reply

Your email address will not be published. Required fields are marked *