|
You have learned many things in HTML. It is now time to put it all together:
The following are examples of stationery; I have mostly the bare bones; you can fill in the other attributes to your liking:
Example 1:
<HTML><HEAD>
<STYLE>BODY {
BORDER-RIGHT: #000080 4px ridge; BORDER-TOP: #000080 4px ridge; BORDER-LEFT: #0000804px ridge;
SCROLLBAR-ARROW-COLOR: #ffffff; BORDER-BOTTOM: #000080 4px ridge; SCROLLBAR-BASE-COLOR: #000080
}
</STYLE>
</HEAD>
<BODY bgColor=#ffffff background="exact path">
<BGSOUND src="exact path" balance=0 volume=0 loop=infinite>
<TABLE bgcolor=#ffff62 cellSpacing=15 borderColorDark=#000000 cellPadding=5 width=80%
align=center borderColorLight=#7777ff border=4>
<TR><TD bgColor=#e4e1c9><img src="exact path"></TD>
<TD bgColor=#e4e1c9><FONT color=#000000 size=4><B>Here</B></FONT> </TD></TR></TABLE>
</BODY></HTML>
Example 2:
<HTML><HEAD>
<STYLE>BODY {
BORDER-RIGHT: #000080 4px ridge; BORDER-TOP: #000080 4px ridge; BORDER-LEFT: #0000804px ridge;
SCROLLBAR-ARROW-COLOR: #ffffff; BORDER-BOTTOM: #000080 4px ridge; SCROLLBAR-BASE-COLOR: #000080
}
</STYLE>
</HEAD>
<BODY bgColor=#ffffff background="exact path">
<BGSOUND src="exact path" balance=0 volume=0 loop=infinite>
<TABLE bgcolor=#ffff62
cellSpacing=15 borderColorDark=#000000 cellPadding=5 width=80% align=center
borderColorLight=#7777ff border=4>
<TR><TD bgColor=#e4e1c9><img src="exact path"></TD></tr>
<tr><TD bgColor=#e4e1c9><FONT color=#000000 size=4><B>Here</B> </FONT></TD></TR></TABLE>
</BODY></HTML>
Basically, for now, you need only these two examples.
The first will give you a table with a picture to the left and your message to the right.
The second example will give you a picture at the top and a message at the bottom.
In the coming days we will tweak these some more, to add more style and diversity to these tables.
Ciao for now.
|