Important Questions - HTML
Important Questions - HTML
V AND JR COLLEGE
Q.1 Write html code to display IT online exam 2025 having text colour red and underline text effect using CSS.
(Internal CSS)
<!DOCTYPE html>
<html>
<head>
<title> Exam </title>
<style>
h1{color:red;text-decoration:underline}
</style>
</head>
<body>
<h1>IT online exam 2025</h1>
</body>
</html>
Q.2 Write html code to display IT online exam 2025 having text colour red and underline text effect using CSS.
(Inline CSS)
<!DOCTYPE html>
<html>
<head>
<title> Exam </title>
</head>
<body>
<h1 style="color:red;text-decoration:underline">IT online exam 2025</h1>
</body>
</html>
Q.3 Write html code to display IT online exam 2025 having text colour red and underline text effect using CSS.
(External CSS)
<!DOCTYPE html>
<html>
<head>
<title> Exam </title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>IT online exam 2025</h1>
</body>
</html>
style.css
h1{color:red;text-decoration:underline}
<h1> UROL</h1>
<ol type="I">
<li> Mango </li>
<li> Mango </li>
<li> Mango</li>
<li> Mango</li>
<li> Mango</li>
</ol>
<h1> UAOL </h1>
<ol type="A" start=6>
<li> Mango </li>
<li> Mango </li>
<li> Mango</li>
<li> Mango</li>
<li> Mango</li>
</ol>
<h1> LAOL </h1>
<ol type="a">
<li> Mango </li>
<li> Mango </li>
<!DOCTYPE html>
<li> Mango</li>
<html>
<li> Mango</li>
<head>
<li> Mango</li>
<title> Exam-list </title>
</ol>
</head>
</body></html>
<body>