Web Site
Graphics
Code
Animations
Sounds
Videos
Java
Programs
Help
Chapter 2

Page 13: Using parameters splash.html

<HTML>
  <HEAD>
    <TITLE>Fee's Website: Welcome</TITLE>
  </HEAD>

  <BODY>
    <P ALIGN=CENTER>
      Welcome to My Website!
    </P>
  </BODY>
</HTML>

Page 14: Adding more paragraphs splash.html

<HTML>
  <HEAD>
    <TITLE>Fee's Website: Welcome</TITLE>
  </HEAD>

  <BODY>
    <P ALIGN=CENTER>
      Welcome to My Website!
    </P>
    <P ALIGN=CENTER>
      This is Fee's Website
      and is all about:
      My Favourite Bands,
      Skate Boarding
      and Internet Games
    </P>
  </BODY>
</HTML>

Page 15: The <BR> tag splash.html

<HTML> <HEAD> <TITLE>Fee's Website: Welcome</TITLE> </HEAD> <BODY> <P ALIGN=CENTER> Welcome to My Website! </P> <P ALIGN=CENTER> This is Fee's Website<BR> and is all about:<BR> My Favourite Bands,<BR> Skate Boarding<BR> and Internet Games </P> </BODY> </HTML>