Step 1.
One set of html/head/body tags, nested properly.
HTML Code:
<html>
<head></head>
<body>
</body>
</html>
Step 2.
title, javascript, css links go in the head section
HTML to display content goes in the body seciton
HTML Code:
<html>
<head>
<title>Plageman Insurance</title>
<link type="text/css" rel="stylesheet" href="Style.css" />
<link type="text/css" rel="stylesheet" href="navigation.css" />
<script type="text/javascript">
<!--
function toggle_visibility(id)
{
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.stle.display = 'block';
}
//-->
</script>
</head>
<body>
HTML for display here
</body>
</html>