Set 91 Practical Question

⭐ Q41 – HTML: Create Webpage with Heading + 2 Paragraphs

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Heading + Paragraphs</title></head>
<body>
<h1>Welcome to LICT Bhuna</h1>
<p>This is my first HTML webpage.</p>
<p>Learning HTML is fun and easy!</p>
</body>
</html>

Write Your HTML / JavaScript Code