Unfortunately I can't open .docx documents. The basic layout of your code should follow this structure
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head> this tag opens the head section
metatags, css and scripts can be placed here
</head> ends the head section
<body> opens the body (page content) section
lists (navigation) and page content goes here
</body> ends the body section
</html> ends the document
For example: you may not put the </body> before <body> . It has to be the other way around and the navigation and other content can be placed between <body> and </body>. Also make sure you only have one copy of each of these on your page <html> <head> </head <body> </body> </html>
Bookmarks