Computer Science, asked by ajitmehrotra2007, 5 hours ago

Identify the errors and write the correct HTML statements:
<br align=center>
<OL type=disc>

Answers

Answered by Anonymous
2

Answer :-

1.) br tag has no attribute align ="center", it is used for a line break. You have to use only <br>. It is an empty tag and thus doesn't require any closing tag.

2.) Correct statement will be <ul type="disc">. ol tag has no attribute type="disc" only ul tag has attribute type="disc", You have to write the attributes of the tag in quotes (" or '). ul tag is used for creating an unordered list.

Similar questions