Links

If you want to have multiple web pages or you want redirect to other pages then use links

            
<a href="Name Of The File Or URL">Text That You Want To Show</tag-name>
            
        

You would normally use this if you are linking to another site you had created. Like our "Next" button at the bottom of this site. But if you are linking to an external site, normally you would want to make a new tab. To do that put:

            
<a href="Name Of The File Or URL" target="_blank">Text That You Want To Show</tag-name>
            
        


If you want you can add your favorite site

            
<a href="https://www.google.com/">My favorite site is google</tag-name>