Site icon DataFlair

Anchor Tag in HTML | Hyperlinks in HTML

Full Stack Web Development Courses with Real-time projects Start Now!!

Program 1

<html>
    <head>
        <title>Hyper Example</title>
    </head>
   <body>
    <center>
        <h3>Click here for next page</h3>
        <br>
        <A href="https://data-flair.training/blogs/">Click here for next page</A>
        <br>
        <br>
        <A href="testimage.html"  target="_parent"> Click here for display Images </A>
        <br><br>
        <A href="HTML & CSS.pptm">Click here for Html Notes</A>
       <br><br>
       <A href="testimage.html" target="_blank">
       <img src="dog.jpg" width="100px" height="100px"> 
       </A>
</center>  
    </body> 
</html>

 

 

Exit mobile version