« Crash guide to HTML. Lesson 11 - Adding Links »
...
|
<html> <head> <title>Ackadia - Learn HTML - lesson 11 - adding links</title> </head> <body background="stone.jpg"> <center> <table border="3" bgcolor="white" cellpadding="10" cellspacing="5" width="80%"> <tr> <td colspan="5"> <center> <img src="../menu-images/ackadiabanner.gif" width="707" height="148" alt="Welcome to Ackadia" /> <br /><br /> This will call an image from another directory ( using ../name of dir ) and span five cells ( colspan="5" ) </td> </tr><tr> <td> This will call a .zip file from a parallel directory on your site ("fonts" in this case) :- <br /><br /> Get <a href="../fonts/files/ackadia3d.zip">ackadia3d.zip (font)</a> </td> <td> This will call a page from a lower directory ("sub-dir" in this case) :- <br /><br /> <a href="sub-dir/useful-code.html">Some useful code</a> </td> <td> Go to another site on the net :- <br /><br /> <a href="http://www.ackadia.com">Ackadia's home page</a> </td> <td> This will get a cool font from across the net :- <br /><br /> <a href="http://www.geocities.com/SiliconValley/Screen/6615/00Viking.zip">Get a cool Viking font!</a> </td> <td> This is for email :- <br /><br /> <a href="mailto:p@a.com?subject=Ackadia HTML Feedback">mail me!</a> (Remember to correct the address!) <br /><br /> This will open your e-mail package to send me a message - and fill in the subject matter <br /><br /> <a href="mailto:YOUR_NAME@YOUR_HOSTNAME">e-mail yourself!</a> </td></tr></table></center> </body></html> See this code running in your browser |



