|
Project Sites |
Personal Sites: |
Bi-Lingual (or tri-lingual) Project website. |
|
The Banks Of My Own Lovely Lee
Oh how oft do my thoughts in their fancy take flight To the home of my childhood away To the days when each patriot’s vision seemed bright Ere I dreamed that those joys would decay My heart was as light as the fair wind that blows Down the Mardyke through each elm tree Where I sported and played ‘neath each green leafy shade On the banks of my own lovely Lee Where I sported and played ‘neath each green leafy shade On the banks of my own lovely Lee |
Words and chords for the above song are available in: |

on the webserver/home/yourusername/public_html
- this will enable viewing of the site by pointing of the browser at the location:mymailbox.fachtnaroe.net
https://www.fachtnaroe.net/~yourusername/
- this will enable internal viewing of the site by pointing the browser at the location:/192.168.1.252/home/yourusername/public_html
http://192.168.1.252/~yourusername
and there is already a single webpage in that folder you're going to have a problem. They can't both be calledindex.html
so we'll use a frameset to get around that problem.index.html
<frameset rows="40,*"> <frame name="topline" src="internet-task.html" /> <frame name="mainwindow" src="webbing.html" /> </frameset>internet-task.html
<html> <body> <a href="history.html" target="mainwindow">History & Structure of The Internet</a> </body> </html>