Lab 2 - Historical person or event |
|
Lab 2 objective |
|
|
In this assignment, you will find sites and pages on the web, and create links to them.
Search for information about your historical person or event. |
|
Build your web page |
|
|
Use an editor to create a web page to contain
links to information about your historical person or event.
> Start > Programs > Accessories > Notepad
Type exactly the following, except use the name of your historical person or event where it says: your historical topic.
<html>
<head>
<title>
your historical topic
</title>
</head>
<body>
<p>
your historical topic
</p>
</body>
</html>
|
|
|
Save your file in your public_html directory
with the name lab2.html (be sure to use lower case letters).
Menu: > File > Save as
Save as type: select the down arrow and select: > All files
Select the File name area, type: lab2.html
Save in: your public_html directory
|
|
Look at your web page |
|
|
To show your new page in your web browser at home, type the location:
file:///C:/public_html/lab2.html
To show your new page in your web browser at school, type the location:
file:///H:/public_html/lab2.html
|
|
Link |
|
|
You will select the web sites that you find most interesting.
When you link to a web site, you can just link to the site,
or you can link to a specific directory in the site,
or you can link to a specific page.
We will build links using the anchor container: |
|
|
You can link to a site, without specifying a directory or page.
<p>
This site provides biographies of the first ladies, including
Martha Dandridge Custis Washington:
<a href="http://www.firstladies.org">National First Ladies' Library</a>
</p>
The <a starts the anchor tag,
then the href attribute is
followed by the = sign, then the location of the web site in quotes,
and then the > |
|
|
You can link to a site, specifying a directory in the site.
<p>
Information on Martha Dandridge Custis Washington
and Mount Vernon:
<a href="http://www.mountvernon.org/george-washington/martha-washington/">Mount Vernon</a>
</p>
The / at the end of the location indicates it is a directory. |
|
|
You can link to a site, specifying a page in the site.
<p>
Information on Martha Dandridge Custis Washington
as first lady:
<a href="https://www.whitehouse.gov/about-the-white-house/first-ladies/martha-dandridge-custis-washington/">
First lady
</a>
</p>
Notice there are several levels of directories in this example,
ending with the specific page. |
|
Complete your page |
|
|
Now complete your page.
Make your 3 to 5 paragraphs with a short description of what you found,
and the link.
Each paragraph should be similar to the example paragraphs, shown above,
including a link to the site, directory, or page. |
|
Put your page on the Internet and submit your completion |
|
|  : |
Return to the previous week 2 page. |