In this tutorial we are going to discuss about the basic html tags(head,title,heading,body). Mainly we use head and body tag for writing a common html page. In head tag we include scripts, meta tags, css sheets(will be discussed later). In body tag we write the structure of the page or in common words which we want to show on our page.
In head tag we can use title tag to show user what the page is about, It will be displayed on the top bar of the page.
There are different set of sizes and font available for html heading varying from 1 to 6. One can use them according to their need. Heading tags are placed in body tag.
<html>
<head>
<title>HTML HEADING TAGS</title>
</head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</body>
</html>
No comments:
Post a Comment