Meteorology 301 - Lab 11


Introduction

In this lab, we make some further additions and modifications to your portfolio page, learning a little more about links .

GOAL:
1. Learn about and use internal links in your portfolio.
2. Place another annotated example of your work in your portfolio.


Instructions

1.Login to your Project Vincent account. Then, go to your personal WWW directory. For most of you, simply enter
vincent> cd WWW
at the Vincent prompt after logging in.

2. Edit your portfolio file, using emacs or your editor of choice.

You will also want to look at your portfolio using your Web browser. In Netscape, this means going to the "File" menu and choosing "Open Location..." When a new window pops up, enter in it
http://www.public.iastate.edu/~LOGNAME/portfolios-template.html
where LOGNAME is your login name. By using the "Back" and "Forward" buttons, you can have your browser switch between this lab and your portfolio page.

Any time you want to see the effect of your changes in the editor, you need to

  1. Save the updated portfolio file, for example by entering "C-x C-s" within emacs.
  2. Push the "Reload" button on your browser when it is showing your portfolio page.

3. We will now use your portfolio page to learn about links.

Links are how a Web browser can leap to another Web location, either in the current page or another page. Within your portfolio page, there are two types of links:

  1. Link from one file or Web page to another.

    Move to the bottom of your portfolio page in the editor. You will see some lines like this:

    Go to [a href="http://www.meteor.iastate.edu/index.html"] ISU
    Atmospheric Sciences Homepage[/a]
    
    (As before, I have used "[" and "]" in place of "<" and ">" to prevent the Web software from interpreting the lines above as HTML tags.)

    Let's look at the structure of this:

  2. Link from one location to another within a Web page.

    Move in the editor back to the top of your portfolio file. About 20 or so lines from the top, you will see

    [a href="#global"] Physics and dynamics of the global atmosphere[/a]
    

    This line has the same structure as before, but now the link is not to a file, but to a location within this Web page called "#global". This location is nine lines down in the file, where we see a location name identified:

    [a name="global"]
    

    Clicking on the words "Physics and dynamics of the global atmosphere" will activate the link and send the Web browser to this location.

  3. You created a link back in Lab 2 when you made a connection from your personal home page to your portfolio page. You have also created links when placing figures into your portfolio page, using the "[img src=...]" html tag.

  4. Links serve several purposes. Two of them are

4.Make a cross-referencing link within your portfolio

You have already placed an example of your work in your portfolio under "Computer programming and modeling". However, this example also demonstrates understanding and skills in two other areas:

  1. Physics and dynamics of the global atmosphere
  2. Effective oral and written communication
We can create links that direct someone scanning one of these categories to the "Computer..." category. I'll direct you in creating one, you do the other.

5.Make another cross-referencing link in your portfolio.

Now that you have seen how to do it, create a cross-reference link to the same location (Q_Ts) under "examples" in "Effective oral and written communication". You should write a sentence with a link in it that is appropriate for this section of the portfolio (i.e., one that tells the reader they will be directed to an example of your writing).

Don't forget to close the link with the "[/a]" tag!

6.Refine your examples listings.

It will be easier to read your portfolio if your examples are numbered. We do this using html tags that identify an ordered list. There are three tags we must use:

  1. [ol] - marks the start of the list
  2. [li] - identifies the start of a list item
  3. [/ol] - marks the end of the list

(Each of the lines here has been tagged as a list item and so appears in your browser as part of a list, with items numbered 1, 2, 3.)

7.Make a new portfolio example.

This is your choice, but you must choose something. Some possibilities are one of the figures you created in a previous lab. You may need to redo part of the lab in order to save the figure as a .gif file rather than a .ps file. Place the figure in the appropriate category and annotate it. Also mark the annotation or the figure (whichever you list first) with the "list item" tag ([li]) to make it part of an ordered list.

You are free, however, to choose other possibilities, such as the text of a speech you may have given in speech class, or the text of one of your Meteorology 101 papers.

8.What I want.

You do not need to hand in anything to me. I will look at your web pages to verify that you have completed all steps.

This is the last lab. You should have it completed by the end of the last day of classes.


Return to Meteorology 301 Lab List

Return to Meteorology 301 Homepage