Set 81 Practical Question

⭐ Q31 – HTML Page With Paragraph + Image + Link

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Paragraph + Image + Link</title></head>
<body>
<h2>Welcome to LICT Bhuna</h2>
<p>This is a computer training institute providing O Level, CCC, A Level etc.</p>
<img src="lict.jpg" width="250">
<br><br>
<a href="https://lictbhuna.in" target="_blank">Visit Official Website</a>
</body>
</html>

Write Your HTML / JavaScript Code