rik18
02-23-2006, 07:28 PM
Hey guys,
Im new to html and Im trying to create a partial CV site page for a friend however I am totally lost with how to do this.
My friend have me a site structure to follow but I really dont know anything about creation of this design.
The structure is;
Main table - 2 columns, 3 rows, centre align, width
Row 1
Header - cell background colour
font size, colour, bookmark
Blank
Row 2
Navigation - background image, top valign, rowspan
font size
unordered list - 3 bookmark hyperlinks
Content - 3 tables
Table 1 - centre alignment, background colour, width
right align, bookmark, font size
content
right align, bookmark hyperlink, font size
Table 2 = Table 1
Table 3 = Table 1
Date - right align, small
Could someone please help me with the code for this, I have to get this done asap and so far I am totally lost with it.
Thanks in advance;
Rik
rik18
02-23-2006, 07:37 PM
What sort of price; i have lots of programs, music etc etc, I could send you some stuff to compensate for your time. Hows that sound?
Pathetique
02-24-2006, 03:06 AM
If you can show me a template of how you want everything laid out I will do it for free..or for programs you have talked about.
Let me know if you are interested: justdreaming@gmail.com
HeLpM3
02-24-2006, 05:20 AM
Try this was kinda hard to figure out what ya meant i think i did everything you wanted if so i wanna know more about those free programs :drool:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<table align="center" border="2px" width="75%" height="75%" bgcolor="#c0c0c0">
<tr>
<td bgcolor="#6495ed" colspan="2"><font size="5" color="#000080"><a name="0"><center>Header</center></a></font></td></tr>
<tr>
<td background="urlhere" rowspan="2" valign="top"><a name="0"> Navigation<br/>
<ul>
<li><a href="#1">Table 1</a></li>
<li><a href="#2">Table 2</a></li>
<li><a href="#3">Table 3</a></li>
<ul>
</a></td>
<td rowspan="2">
<a name="1">
<table bgcolor="#6495ed" align="right" width="75%">
<tr>
<td><font size="5"> Content 1</font></td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here <a href="#0">Top</a></td></tr>
</table>
</a>
<!-- Do not remove :) -->
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<!-- Do not remove :) -->
<a name="2">
<table bgcolor="#c0c0c0" align="right" width="75%">
<tr>
<td><font size="5"> Content 2</font></td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here <a href="#0">Top</a></td></tr>
</table>
</a>
<!-- Do not remove :) -->
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<!-- Do not remove :) -->
<a name="3">
<table bgcolor="#6495ed" align="right" width="75%">
<tr>
<td><font size="5"> Content 3</font></td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here</td></tr>
<tr><td>Text here Text here Text here Text here Text here Text here Text here <a href="#0">Top</a></td></tr>
</table>
</a>
</td>
</tr>
</table>
</body>
</html>