Computer Science, asked by 20067vandanasharma, 5 months ago

help me............​

Attachments:

Answers

Answered by anindyaadhikari13
1

Question:-

Write the errors in the following code.

Solution:-

Given code,

<html>

<head>

<title>Example</head>

</title>

<body>

.......

</html>

</body>

Here, tags are not closed properly. head tag must be closed after closing of title tag. Similarly, body tag is closed before closing of html tag.

After correction, the given code will be,

<html>

<head>

<title>Example

</title>

</head>

<body>

.......

</body>

</html>

Similar questions