main.html
- <HTML>
- <HEAD>
- <TITLE>System Support
Help Desk</TITLE>
- </HEAD>
- <FRAMESET ROWS="26%,*">
- <FRAME SRC="heading.html">
- <FRAMESET COLS="25%,*">
- <FRAME SRC="question.html">
- <FRAME SRC="welcome.html"
NAME="answer_frame">
- </FRAMSET>
- <NOFRAMES>
- <P>
- This page requires a Frames capable browser to
view.
- </P>
- </NOFRAMES>
- </FRAMSET>
- </HTML>
 |
Click here to see what the output of the above code would look like. To come
back to this page when you've finished looking at the result, close the new window it
opened in. |
heading.html
- <HTML>
- <HEAD>
- </HEAD>
- <BODY BGCOLOR="WHITE">
- <P ALIGN="center">
- <IMG SRC="pic.gif"
WIDTH="70" HEIGHT="96"><H1>
System Support Help Desk</H1>
- </P>
- </BODY>
- </HTML>
 |
Click here to see what the output of the above code would look like. To come
back to this page when you've finished looking at the result, close the new window it
opened in. |
question.html
- <HTML>
- <HEAD>
- </HEAD>
- <BODY>
- <P>
- <B>Frequently asked Questions</B>
- </P>
- <A HREF="answer1.html" TARGET="answer_frame">
- <P>
- My CD-ROM will<BR>
- not read my CD
- </P>
- </A>
- <A HREF="answer2.html" TARGET="answer_frame">
- <P>
- When Switching on<BR>
- my PC an error message<BR>
- comes up "No opperating<BR>
- system"
- </P>
- </A>
- <A HREF="answer3.html" TARGET="answer_frame">
- <P>
- What is XMS memory
- </P>
- </A>
- <A HREF="answer4.html" TARGET="answer_frame">
- <P>
- What is 32bit processing
- </P>
- </A>
- <A HREF="answer5.html" TARGET="answer_frame">
- <P>
- What is JAVA
- </P>
- </A>
- </BODY>
- </HTML>
 |
Click here to see what the output of the above code would look like. To come
back to this page when you've finished looking at the result, close the new window it
opened in. |
welcome.html
- <HTML>
- <HEAD>
- </HEAD>
- <BODY>
- <H3><P ALIGN="CENTER">
- <B>Welcome To the Online System
Support Help Desk</B>
- </P></H3>
- <P>
- Just click on one of the question links on the
left of the screen.
- </P>
- </BODY>
- </HTML>
 |
Click here to see what the output of the above code would look like. To come
back to this page when you've finished looking at the result, close the new window it
opened in. |
answer1.html
- <HTML>
- <HEAD>
- </HEAD>
- <BODY>
- <P>
- <B>My CD-ROM will not read my
CD</B>
- </P>
- <P>
- Make sure there is a CD in your CD-ROM. Check
if all the connections to your CD-ROM is still in place. If the problem still persists
re-install the CD-ROM software. However if all this has failed please contact your system
vendor.
- </P>
- </BODY>
- </HTML>
 |
Click here to see what the output of the above code would look like. To come
back to this page when you've finished looking at the result, close the new window it
opened in. |
answer2.html, answer3.html,
answer4.html, answer5.html
- <HTML>
- <HEAD>
- </HEAD>
- <BODY>
- <P>
- <B>Appropriate header for
question</B>
- </P>
- <P>
- Answer to question.
- </P>
- </BODY>
- </HTML>