Computer Science, asked by pritam3021, 3 months ago


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 aparnamane1981
6

i hope this will help you

Attachments:
Answered by sougatap57
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