Write a program using html with following css
Specification
1.The background color of the company name should be in green
2.The text color of the company name should be red
3.The heading should be large with font "Comic Sans ms."
Answers
Answered by
6
i hope this will help you
Attachments:
Answered by
2
Answer:
<!DOCTYPE html>
<html>
<head>
<title>
company name
</title>
<style>
h1{
font-family: "Comic Sans MS", "Comic Sans", cursive;
}
</style>
</head>
<body>
<h1 style="color:red;background-color:green;">ComPany Name</h1>
</body>
</html>
Similar questions
English,
1 month ago
Physics,
1 month ago
Chemistry,
1 month ago
Social Sciences,
3 months ago
Computer Science,
3 months ago
Math,
9 months ago