Today we will study about,

ANKLE TAG:

Ankle tag is used to add links about different applications. 
For Example: 
                    we want to add link of Instagram

                                                 <a href="">Instagram</a>

How to insert image in an Ankle Tag?
Instead of writing text we will insert an image tag. 
                                                
                                                <a href="">img src="instagram.jpg" alt="error" </a> 

How to open a website in a New Tab?
Add
           Target="blank"

                                                <a href="" target="blank">Instagram</a>

To Create a 
Home Page
About Us
Contact Us
    
                                                   <a href="home.html">Home</a>

                                                   <a href="aboutus.html">About Us</a>

                                                    <a href="contactus.html">Contact Us</a>

Basically, to add content in these pages we create a new file of these and put their links in hyperlink and edit them.