I have tried to make this work, yet for some reasons it won't
Using Dreamweaver, yes, I am a noob. On the split (non live preview) it works, yet when selecting "live preview" it doesn't and neither in browsers

The reason for the CSS inside the document is to make sure everything works first before using a separate file..
I am trying to design my stupid friggin website....grrrr
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style>
body {
width: 900px;
margin-left:auto;
margin-right:auto;
}
table {
border: #000 thin 1px;
}
/*tr {
border: #06C thin 1px;
}
*/
/*td {
width: 80px;
border:#F00 thin 1px;
}
*/
</style>
</head>
<body>
<div id="imageTabs">
<table>
<tr>
<td>Insert_Image1_Url_Here</td>
<td>Insert_Image2_Url_Here</td>
<td>Insert_Image3_Url_Here</td>
<td>Insert_Image4_Url_Here</td>
</tr>
<tr>
<td>Insert_Image1_Caption_Here </td>
<td>Insert_Image2_Caption_Here </td>
<td>Insert_Image3_Caption_Here </td>
<td>Insert_Image4_Caption_Here </td>
</tr>
<tr>
</table>
</div>
</body>
</html>