You never asked a question. So I'll just correct the mistakes I find. Lets start with the html file.
First I get rid of the empty lines and move the </div> tags up to live with the start tag on the same line.
Then:
Code:
<link href="../common/style.css" type="text/css" rel="stylesheet"> </link>
<link href="style_portal.css" type="text/css" rel="stylesheet"> </link>
</link> not correct way to close. Well in my editor anyway. (been told it didn't matter, but I don't like it.)
<head> needs a close tag you have <head> not </head>.
<body id="container" > Body does not need an ID. We could use a container for the divs that appear inside of the body so lets get rid of this id and make a container div to enclose everything.
<div id="menu"> has no close tag so lets give it one. For instructional purposes we leave it like that and comment out the menu choices:
Code:
<!DOCTYPE html>
<html>
<head>
<title>Test HTML5</title>
<link href="../common/style.css" type="text/css" rel="stylesheet">
<link href="style_portal.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="../comon/Script1.js"></script>
</head>
<body id="container" >
<div id="header"></div>
<div id="menu"></div>
<div id="bodyInactive"></div>
<div id="footer"></div>
</body>
</html>
And then we'll add the css.