write a program using HTML with following CSS specifications
1.) the background colour of the company name should be green
2.) the text colour of the company should be red
3.) the heading should be large with font "comics sans MS"
4.) the description of the company should be displayed in blue colour in paragraph
Answers
Answered by
9
Answer:
<html>
<head>
<style>
body{
margin:0px;
}
.comlogo{
background-color:green;
color: red;
}
h1{
font-family:comics-san;
}
p{
color:blue;
}
</head>
<body>
your code
</body>
</html>
Answered by
0
Answer:
Similar questions