Create an HTML according to following instruction,
Heading level 3
The text should be left aligned.
The text color should be red.
The font should be: Comic Sans MS.
The font size should be 5.
Answers
Answered by
13
Answer:
<html>
<head>
<title>Title of the Page</title>
</head>
<body>
<h3>HEADING</h3>
<br>
<font size="5px" color="red" face="comic sans ms">Text of the Page</font>
</body>
</html>
Similar questions