. Welcome to Fredriks homepage school!
   

On this page you will learn how to create a professional homepage.

 
 
 

You can do a homepage in 2 ways: pure HTML or you can use a HTML-editor. Some good editors are: Front Page, Coffe Cup, HotDog5, Word Pro.

 

1.
Write something about yourself then add a few pictures. Here are some examples:

You can save these images by right-clicking and then click on "save image as".

2.
Then add some of your favourite links.

3.
When you are ready with your first page you can start creating game pages. On your game page you should have codes, files and pics.

Back to top

Frames.
To make a page with two windows, first create two pages:
main.html and menu.html, then create one more page were the html text should look like the green text witch you can copy this into your page (DO NOT COPY THE LITTLE ORANGE TEXT):
<--!
<html>
<head>
<title>Write your title here</title>
<base target="main">
</head>
<frameset Cols="20%,*" border=0>
<frame name="menu" src="menu.html" marginwidth="10" marginheight="10" scrolling="Auto" frameborder="no" noresize>
<frame name="main" src="main.html" marginwidth="10" marginheight="10" scrolling="Auto" frameborder="no" noresize>

<noframes>
<p>You need a frames capable browser to view this page. Here
</noframes>
</frameset>
</html>

!-->

 

 

Then save the page as index.html
NOW YOU HAVE CREATED A PROFESSIONAL HOMEPAGE

Back to top