html help unstructured and incorrect nesting help?

Elmo

New member
for my uni assignment part of it is sorting out html coding but i really am stuck.
this is what we have been told. incorrectly structured (tags in wrong order within the document) and there are tags missing. The document will not, therefore, work correctly when interpreted by a browser. and then have to the tags are in the correct order and the missing tags have been replaced.

this is the unstructured html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

</body>

<title>Creating HTML for MU130 Portfolio using Notepad</title>

</head>

<p>Hello <b>world!</b><p>
</html>

<p>This task is part of the tutorial for week 4 of MU130

<head>



i also have to do this.
this html is also incorrectly structured. Although the tags are in the correct order, they are nested incorrectly. Copy and paste the tags into Document 2 so that the tags are correctly nested

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>

<title><h1>Creating HTML using Notepad</title></h1>

</head>

<body>
<p>Hello <b>world! <p></b>
<p><h2>This task is part of the tutorial for week 4 of MU130<p></h2>
</body>

</html>

please could you do this for me thanks i am really stuck there has to be a html guru
 
Back
Top