Identify the errors in the following html and rewrite.
Attachments:
Answers
Answered by
0
Explanation:
Mistakes-
1-<H1> must closes with <H1> not with H2
2-It is <HEAD> not <HEAD1>
3-For changing background color and font color you need to use <style> tag like
<style>
body {background-color: powderblue;}
h1 {color: red;}
p {color: blue;}
</style>
HOPE IT WILL HELP
Similar questions