HTML TAGS INTRODUCTION

Introduction part-3 

introduction html


1. <html></html> 

This is the root element tag. It designates that everything between these brackets contains HTML code. 

2. <head></head> 

This tag distinguishes the head of the web page from the content. This is where you put Javascript code or give ‘meta’ information about the web site. 

3. <title></title> 

Have you noticed that browser tabs contain text that gives you an overview of the website? That text is written as the site’s title with this tag. 

4. <body></body> 

The body tag specifies the actual content of the website. 

5. <h1></h1> 

This is a heading tag, which creates a title by making text bigger and making it bold. There are six heading tags: h1, h2, h3, h4, h5, h6, in descending order of size. 

Comments