R. Craig Collins >
Web Page Design >
Lab 2
Lab 2 © R. Craig Collins, 2005/6
General Lab Directions
Note: There is not enough time in lecture to cover all
the material; read your book BEFORE you begin the lab
Note: Typically labs will require you to invest some time in the lab, outside
of class lecture hours
•Note: Please read the related overview material before continuing
Check with your Instructor for due date, typically Friday, 11:59PM (see due
dates)
•NOTE: Do NOT use CAPITAL letters OR spaces in file names, or add extra spaces between quotation marks.
•NOTE: Do NOT use curly quotation marks, such as ”; only use straight quotation marks, such as ".
•See a video on Lab 2
| •Document tags introduced in Lab
2 (link to documentation part of lab) (You will later transfer this information into a D2L quiz) •Attributes to document must include: name=, which modifies <a>, and link= and vlink=, which modify <body> You may download an acrobat or word processing document to help you with this. |
| •Begin coding and testing Lab 2 (link to web page construction requirements) |
| •Answer questions concerning topics covered in Lab
2 (You will later transfer this information into a D2L quiz) You may download an acrobat or word processing document to help you with this. |
•When creating booking bookmarks, please refer to my links page; the book introduces a different method that is addressed in Web Design II. For now, we will stick with traditional HTML.
At the end of this process,
1) you will submit the web page files by zipping them, and placing them in the Desire2Learn dropbox area. Instructions on zipping are below.
2) you will be 'turning
in' your documentation and Q&A by taking the IMED Lab 1: Dubé quiz in the Quizzes area of Desire2Learn.
So, to get the best score, complete the documentation and Q&A as directed
below, first.
• Optional: Open/save an Acrobat pdf document to help with documentation and questions
(get Adobe Acrobat Reader free, here)
• Optional: Right click/save a Word doc document to help with documentation and questions
• Optional: Right click/save a Rich Text rtf document to help with documentation and questions
Part 1: Documentation, (30%) Attributes to document must include: name Refer to My First Web Page to update the <a> tag and its attributes, and to update the <body> tag and its attributes, based on new information in this lab.. Tag: Anchor <a> </a> (15 points)
|
Part 2, Activity (40%): •See also Step by step directions (Adobe Acrobat file)
|
Part 3: Hands On (30%): Be prepared to show the functionality
of your web page, and discuss/demonstrate new tags and attributes used in this lab At the end of this process, you will be turning in answers using the Quizzes area of Desire2Learn, based on the following questions. So, to get the best score, fill in all the answers in this document first. Posers, could you answer the following on the test?
(Specific Lab questions below.)
|
Problems? Zip the entire folder and attach to an email:
•Send the mail to your instructor,
cc yourself
•The subject line should include
your name, your class, your section, and what you are submitting
•Make sure you attach the zipped file
1. Choose the class for which you want to drop off an assignment.
2. Find the Dropbox tool, click on it.
3. Choose the appropriate Dropbox folder, click on it.
4. Choose [Add a File], then choose [Browse]; you may need to choose (My) Computer first
5. Find the file that you would like to upload and click open, then choose [Upload]
6. Type in a short description or comment about the file, if you like.
7. Select [Add] for any additional files that may be pertinent, and repeat
8. After your files have been selected, click [Upload]. (You will always click upload at least twice)
9. Some files may take a long time to upload (especially if there
are graphics in the file). After the upload is complete the File
Upload dialog box should appear. See the steps below to verify
that your file went through.
1. Go to the Dropbox tool
2. Click the number under Submissions
3. All of the assignments that have been submitted will be listed.
Coding help... you html should have similar features as those shown below. The <!--comment: --> explain the nearby html.
<html>
<head>
<title>Change this to your title</title>
</head>
<!--comment: Change this to your name -->
<!--comment: replace the word 'change' with the desired values-->
<body bgcolor="change" link="change" vlink="change">
<!--comment: a name sets a book mark, a place to jump
to; this is the very top, give it an appropriate value-->
<a name="change"></a>
<!--comment: H1-H6 are headings/headlines; type any text
you wish to be a headline below, then surround your text with the correct headline
tag set-->
change this to your headline
<!--comment: this creates a link; fill in the appropriate URL, and change
the visible link's text value-->
<a href="change">To ???</a>
<!--comment: this creates a line break-->
<br>
<!--comment: this creates a link to a bookmark you have named on the current
page; since this link behaves differently, we use the equal sign followed by
a #, then the URL; change the value to a named bookmark, and make sure the value
matches exactly the bookmark name, then change the visible link's text value-->
<a href="#change">To ???
</a>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<!--comment: this creates a link to a bookmark you have named on the current
page; since this link behaves differently, we use the equal sign followed by
a #, then the URL; change the value to a named bookmark, and make sure the value
matches exactly the bookmark name, then change the visible link's text value-->
<a href="#change">To ???
</a>
<!--comment: a name sets a book mark, a place to jump
to; this is the very bottom, give it an appropriate value-->
<a name="change"></a>
</body>
</html>