Computer Science, asked by amanchoudhary06, 9 months ago

Form a css code within the ...<|head> for the following speciations:
Background colour: blue
For the paragraph,
font family is Dotum and colour of the text is red,
Heading should be in black colour.

Attachments:

Answers

Answered by pawan1295
11

Answer:

<style>

body {

background-color: blue;

}

p {

font-family: Dotum, sans-serif;

color: red;

}

h1, h2, h3, h4, h5, h6 {

color: black;

}

</style>

Similar questions