Monday, April 13, 2020

HOW TO INSERT HYPERLINKS IN A WEBPAGE ?

<!DOCTYPE html>

<html>
    <head>
        <meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
        <title>Hello, World!</title>
    </head>
    <body>
        <h1>
            Hello, World!
        </h1>
       
        Here we will study how to add hyperlinks i.e the links to other webpage,audio file , video file or some programme.When we click on hyperlink it will open the file to which it is attached.
       <hr>
       
        For example :
       
        To open Google search page through my page i add :
        <br>
       
       
        <ol>
          <li> <a href="https://www.google.com">Google</a></li>
            <li>   <a href ="https://www.amazon.com">Amazon</a></li>
           
           
           
        </ol>
       
    
    
    </body>
</html>


OUTPUT : 


No comments:

Post a Comment