Write a program using html with following CSS specifications:
a) The page should contain heading as XII IT in blue color
b) Create Unordered List of topics in IT
c) Change the font to comic sans Ms
Answers
Answered by
3
Explanation:
the page should be content heading as it red colour.
create unordered list of topics in IT
Answered by
9
Program using HTML with the following CSS specifications:
- The page should contain the heading XII IT in blue color: We will use (style: color) to change its color.
- Create an Unordered List of topics in IT: We will use the <ul> tag to make an unordered list.
- Change the font to comic sans Ms: we will use (style: font-family) to change the font of the contents of the body.
Here is the program snippet:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
font-family: comic sans Ms;
}
</style>
</head>
<body>
<h1 style="color: blue;">XII IT</h1>
<h2>Topics in IT</h2>
<ul style="list-style: disc;">
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ul>
</body>
</html>
Similar questions
English,
3 months ago
Math,
3 months ago
Math,
3 months ago
English,
6 months ago
English,
6 months ago
Science,
11 months ago
Accountancy,
11 months ago
Computer Science,
11 months ago