Computer Science, asked by musaddi619, 8 months ago

1. Find the error(s) in the following code and underline those errors.
<HTML>
<HEAD>
<TITLE> Example <HEAD>
<TITLES
<BODY>..........
</BODY>
<HTML>​

Answers

Answered by imanitheengineer
15

Answer:

This is the correct code

<HTML>

<HEAD>

<TITLE>Example</TITLE>

</HEAD>

<BODY>...

</BODY>

</HTML>

Explanation:

Your errors

Title tag should be closed before the head tag.

Forward slashes in ending tags.

Check your lines 3 4 6

Please mark brainliest

Similar questions