Ive html and css files created in a dream weaver. How can create a page template based on these html/css file to get the same look and feel for all the pages in application. I tried to put the the following code (part of entire file) into the body region of page template. These links corresponds to navigation bar. Currently the code is hard coded with navigation bar links. How do I generalize this code so that it works as htmldb navigation bar style?.
Once I design a nice UI in Dreamweaver, whats the best way to plug in dreamweaver html/css file to prepare a general page template to maintain same look and feel?
Any help/pointers are appreciated.
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left" valign="top"><img src="images/logo.gif" width="153" height="45"></td>
<td align="right" valign="top" nowrap>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/blank.gif" width="1" height="4"></td>
</tr>
<tr>
<td align="right" valign="top">
Home <span class="globallinkseparator">
| </span>
Help<span class="globallinkseparator">
| </span><span class="globallinks">Feedback</span><span class="globallinkseparator">
| </span>Print<span class="globallinkseparator"> | </span><span class="globallinks">Preferences</span><span class="globallinkseparator">
| </span><span class="globallinks">Logout</span></td>
</tr>
</table>
</td>
</tr>
</table>