creating Links in HTML - Image Links - target blank

how to create Links in HTML -how to  Image Links - target blank
how to open new tab when we click on link

main page
--------------
<!DOCTYPE html>
<html>
<head>
<title>index</title>
</head>
<body bgcolor="lightblue">
<h1>home page</h1>
<a href="page1.html" target="_blank">goto next page</a><br><br>
<a href="page3.html">click here for last page</a><br>
<img src="dm.jpg" width="300px" height="150px" alt="learn digital marketing"><br>

<a href="page2.html"><img src="dm.jpg" width="100px" height="50px"></a>
</body>
</html>

page1.html
--------------
<!DOCTYPE html>
<html>
<head>
<title>index</title>
</head>
<body bgcolor="lightblue">
<h1>home page</h1>

<img src="dm.jpg" width="300px" height="150px" alt="learn digital marketing"><br>

<a href="page2.html"><img src="dm.jpg" width="100px" height="50px"></a>
</body>
</html>


0 Comments