Computer Science, asked by amanjoth6567, 8 months ago

Write a program using html with following css specification - the background colour of the company name should be in green, the text colour of the company name should be red, the heading should be large woth font "comic sans ms ", the description of the company should be displayed in blue color in a paragraph

Answers

Answered by pradhanpriya23122003
37

Answer:

i hope you are helpful.

Attachments:
Answered by adarshkale
14

Answer:

<!DOCTYPE html>

<html>

<head>

<title>XII IT</title>

<style type="text/css">

 h1{text-align: center;background-color: green;color: red;font-family: comic sans MS}

 p{color: blue}

</style>

</head>

<body>

<h1>Titan fastrack</h1>

<P>Titan fastrack is a fashion accesarry retail brand in india.</P>

</body>

</html>

Explanation:

Similar questions