Hallo Martin.
Am einfachsten in das ganze mit Frames zu lösen. Dazu brauchst du erst mal ein frameset. Z.B. etwas in der Art
frameset.htm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>frameset</title>
</head>
<frameset rows="50%,50%">
<frame src="menue.htm" name="top">
<frame src="welcome.htm" name="bottom">
</frameset>
</html>
Ich gehe mal davon aus, daß du schon die welcome.html und links.html fertig hast. Dann fehlt nur noch das Text-Menü namens menue.html:
menue.htm:
<html>
<head>
<title>menue</title>
</head>
<body>
<a href="welcome.htm" target="bottom">Start</a><br>
<a href="links.htm" target="bottom">Links</a><br>
<a href="mailto:hans.wurst@brot.de">Mail an Hans Wurst</a>
</body>
</html>
Ein sehr großes Problem war das nicht, oder?