Please help me with this if you don't mind?

Web page
my home whole document with 2 links
first page with 1 link
selection with 1 link

world travel framed page as shown wiht 1 link
each frame separately with 3 links
prices and packages - a single frame with 1 link

Thank you very much for your help :)

See:

http://www.jiskha.com/display.cgi?id=1284515115
Last response reproduced below:

"Do you need help on HTML?
Have you already taken on HTML or CSS?
The context is important to figure out what kind of help you need. Also, typing out the whole question will help.
Please post additional information to better help you. "

mathmate this C:\Program Files\Jan's CompLit 101\Lessons\web\basics\summary.htmis what im trying to do

We need more information to help you.

What is in this file "summary.htm"?
What are you supposed to do with it, modify it to make additional links?

A link can be produced by adding the anchor tag, such as:

<a href="http://www.google.com">Ref:Google</a>
will create a link to the Google search engine and displays "Ref:Google" as the hyperlink text.

mathmate im trying to copy as a link and its not letting me do it

What link are you trying to copy?

The file summary.htm is on your hard disk, so nobody but you will have access to it.

If you are trying to send a different link, try putting spaces between the letters of the link, like:
h t t p : / / w w w . g o o g l e . c o m

More important of all, try to explain what you were told to do. What you have posted does not sound like a written question verbatim from your teacher. It sounds like some shorthand notes with parts missing.

oh okay thank you anyway mathmate and i don't know anything about frames or what they are and that's what im trying to find frames but i cant

Your subject to learn is HTML.

Look up some tutorials on the net on HTML. Frames is a little more advanced concept in HTML, and is (I believe) on the way out because the latest concept in HTML is anything related to presentation should be done using CSS (Cascading style sheets).

In any case, try some tutorials such as:
http://htmldog.com/guides/htmlbeginner/
or Google your own with keywords like
"HTML tutorial for beginners".

If you have not been exposed to HTML before, be ready to spend a week to learn on your own.

In case you need examples, here's a tutorial on frames:

(Broken Link Removed)

However, it will sound like gibberish if you do not already know HTML.

To understand your request correctly, you have a web page with the following structure:

- A main/home page with 2 links.
- A first page with 1 link.
- A selection page with 1 link.
- A framed page called "world travel" with 1 link.
- Each frame within the "world travel" page has 3 links.
- The "prices and packages" page is a single frame with 1 link.

If you'd like to know how to create this structure, you can follow these steps:

1. Start by creating an HTML file with the content you want to display on your web page. You can use a text editor such as Notepad or any HTML editor like Visual Studio Code, Sublime Text, or even an online tool like CodePen or JSFiddle.

2. Begin by setting up the basic structure of an HTML document. This includes the `<!DOCTYPE html>` declaration at the beginning, followed by the `<html>` tags that enclose the entire document.

3. Inside the `<html>` tags, add a `<head>` section. This is where you can include meta tags, title, and other head-related elements like stylesheets and scripts. For now, simply include a `<title>` tag to give your web page a title.

4. After the `<head>`, include a `<body>` section. Inside the `<body>`, you can add the actual content of your web page.

5. Start by creating two links on your main/home page. To do this, you can use the `<a>` (anchor) tag with the `href` attribute to specify the URL the link points to. Write the desired link text between the opening and closing `<a>` tags.

6. Next, create the first page. You can follow the same steps as above to include the link on this page. Remember to set the `href` attribute to the desired URL and provide the link text.

7. Similarly, create the selection page with its respective link.

8. To create the framed page, you can use the `<frame>` tag. Include the `src` attribute to specify the URL of the content that will be loaded in the frame. Additionally, you can add the `name` attribute to give the frame a specific name. Then, create the link within this frame using the `<a>` tag.

9. Repeat the process for each frame within the "world travel" page. Configure the `src` attribute of each frame to load the desired content and include the corresponding link using the `<a>` tag.

10. Finally, create the "prices and packages" page as a single frame with a link.

Remember to save the HTML file with the .html extension and open it in a web browser to view the created web page.

I hope this helps you in creating your desired web page structure. Feel free to ask if you have any further questions!