Set 63 Practical Question

⭐ Q13 – 7 Different Colored Lines

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Colors</title></head>
<body>
<p style="color:red;">This line is Red</p>
<p style="color:green;">This line is Green</p>
<p style="color:blue;">This line is Blue</p>
<p style="color:purple;">This line is Purple</p>
<p style="color:orange;">This line is Orange</p>
<p style="color:brown;">This line is Brown</p>
<p style="color:gray;">This line is Gray</p>
</body>
</html>

Write Your HTML / JavaScript Code