Set 79 Practical Question

⭐ Q29 – Create Webpage Showing 3 Paragraphs with Different Styles

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head>
<title>Paragraph Styling</title>
<style>
</style>
</head>
<body>
<p class="p1">This is paragraph one</p>
<p class="p2">This is paragraph two</p>
<p class="p3">This is paragraph three</p>
</body>
</html>

Write Your HTML / JavaScript Code