Questions
a) Write HTML program with title Student Information: b) Write Name of college in large font. c) Write address in small font. d) Write course name with different background color of each course. e) Insert image in background
Last Updated : 17 Jul 2025
Jul 2024
Solution:
<!DOCTYPE html>
<html>
<head>
<title>Student Information</title>
</head>
<body style="background-image: url('https://examjila.com/public/assets/images/courses/olevelwebdesigning.png');">
<h3>Student Information</h3>
<p style="font-size: 70px;">NIELIT Delhi</p>
<p>Unnao, Lucknow bypass UP</p>
<p style="background-color:lightgreen ">O Level</p>
<p style="background-color:lightblue">A Level</p>
<p style="background-color:grey ">B Level</p>
<p style="background-color:lightyellow">C level</p>
</body>
</html>
OUTPUT:
Meanwhile you can watch this video
Watch Video