form a css code within the< head>------</head> for the following specifications . background colour : blue , for the paragraph.
font family is datum and color of the text is red and heading should be in pink color
Answers
Answered by
1
<style>
body {
background-color: blue
}
p {
font-family: datum;
color: red;
}
#heading_id {
color: pink
}
</style>
Similar questions