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
Math,
3 months ago
Biology,
3 months ago
Computer Science,
3 months ago
Geography,
7 months ago
Social Sciences,
7 months ago
Math,
11 months ago