Set 57 Practical Question

⭐ Q7 – Hyperlink + Image Link

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Hyperlinks</title></head>
<body>
<a href="https://www.youtube.com" target="_blank">Visit YouTube</a><br><br>
<a href="https://lictbhuna.in" target="_blank">
<img src="logo.jpg" width="200">
</a>
</body>
</html>

Write Your HTML / JavaScript Code