Give the coding for giving the heading 'PACE
Computer Education' of <H1> tag , font style
as Comic Sans MS, text color as blue. Body text
color as red, background as green, alignment as
center, font style of body text as Brush script,
size = 15. The text for body is as follows:
Education is the
ability to listen to almost
anything without
losing your temper
or your
self confidence.
And so is Democracy and Maturity too.
Answers
Answered by
11
Answer:
<!DOCTYPE>
<html>
<head>
<title> Headings </title>
<style>
#heading {
.font-style = Comic Sans; (by the way you have to import the font)
.font-color = blue;
}
#body {
.font-color = red;
.background = green;
.font-family = (you have to import font)
.font-size = 15px;
}
</style>
</head>
<body>
<h1 id="heading"> PACE Computer Education </h1>
<p id="body">
(put that text here)
</p>
</body>
</html>
If you find my answer good enough, kindly mark it as Brainliest.
Similar questions