help me............
Attachments:
Answers
Answered by
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