Posted: April 24th, 2025
topic top Retirment destinations Abroad
More bang for your Dollar
During Week 3 through Week 7, you will either add additional pages to your website or you will add new functionality to your home page, as directed in the
instructions
for each assignment.
You must write the code files by hand for all assignments in this class. A simple text editor, such as Notepad or
Notepad++
will suffice (or TextEdit on the Mac). DO NOT use GUI editors, such as FrontPage, Dreamweaver, etc. You must write the code for your web pages yourself. If you are using a PC, it is strongly recommended that you download the free Notepad++ text editor because it contains extra features which assist with debugging, such as line numbering and color coding of different elements of syntax. Mac users should use the TextEdit text editor that comes with the Mac OS. However, if you are a Mac user, make sure you set TextEdit to use Plain Text by default. You can find instructions for this
here
.
File Naming Conventions: The home page of your website must be named “LastFirstHomePage.html” where “Last” is your last name and “First” is your first name. For
example
, if your name is John Smith, you would name your home page file SmithJohnHomePage.html This file name will not change from week to week. Starting with Week 2, you will also have a CSS file linked into every HTML page on your website. Name your CSS file “LastFirstStyleSheet.css” where “Last” is your last name and “First” is your first name. Your website must only have 1 CSS file and that file should be linked into all HTML pages on your website. Additional HTML pages created for your website (During Week 3 through Week 5) should be hyperlinked together through a navigation menu that appears on all pages of your website. Naming conventions for each additional page on your website will be included in each assignment description that requires a new HTML page.
Specific Instructions for Assignment 1:
For this assignment, you will create a Home Page for the website you will be developing throughout the first 7 weeks of this semester. Include all of the following in your Home Page:
1) Begin by creating a new file in your text editor. On the PC, you should use Notepad++. On the Mac, you should use TextEdit (but make sure to set it to use Plain Text by default, following these instructions.
2) On the first line of the file, add the HTML5 DOCTYPE statement: <!DOCTYPE html>
3) Add the opening and closing , , , and
(See an example of a basic HTML document
here)
4) Customize the text inside of the
5) Add the lang=”en” attribute to your opening tag, like in this example. Important tips:
6) Add the charset, description, keywords, and author meta tags to the head section of your document, as in this example. The charset should be set to “UTF-8”. Customize the description, keywords, and author meta tags to contain a description of your webpage, keywords related to your web page, and your name as the author. Before saving your file, check the encoding settings to make sure your file is encoded in “UTF-8” to match the file encoding you specified in your charset meta tag. In Notepad++, go to the Encoding menu on the menu bar and make sure “Encode in UTF-8” is selected. Two important tips:
7) Your page should now contain the basic skeleton required on all HTML pages (although it still does not contain any of the content that will actually display in the browser). Save your file and upload it to the HTML validator to check for compliance with the HTML5 standards here. Your file should pass validation. If you receive any errors or warnings, then go back through Steps 1-5 of the assignment again until you have corrected all errors and your file passes validation. It is also recommended that you save your work and validate your file after each of the remaining steps of the assignment, in order to identify and fix your errors promptly. It is must easier to debug and correct your errors if you validate your file after each new element that you add to your file than if you wait until the end of the assignment to validate your file.
8) The rest of the code that you add to your file for this assignment will go inside of the body section of your document, between the opening tag and the closing tag. Use the
9) Use paragraph tags and line break tags to add 4-6 full paragraphs of original content that you have written yourself about the topic you have chosen for your website. (See examples here). Arrange the paragraphs between the different sub-headings you created on your page. Be sure to avoid improperly nesting the tags. Remember that you cannot nest a paragraph inside of a heading, or nest a heading inside of a paragraph. You can see another example of a properly arranged page here. Remember, though, that these code examples only show the code, but you will be expected to have real content and substance on your page, too. The content is the 4-6 full paragraphs of information that you write yourself about the topic you have chosen for your website. Also, remember to validate your file after completing each step in this assignment to make sure your file still passes validation before moving onto the next step of the assignment!
10) Include three external hyperlinks to websites that are related to the topic you have chosen for your own website. (See an example of the code for an external hyperlink here). Remember to validate your code before moving on to the next step! Important tips:
11) Include three images on your web page that are related to the topic you have chosen for your own website. First, you need to find 3 images that are in the public domain and download a copy of each image to your own computer. You may want to try some of the sites recommended in this
article
for locating public domain images. Then add the HTML code to your file to display all three images on your page. (See an example of the code for an image here). You should use relative paths to the copies of the images you downloaded. Do not use absolute paths to locations on your computer (or only you will be able to see the images) and do not use URLs to externally hosted copies of the images. Remember to include the required alt attribute on every image. Also, remember to validate your code before moving on to the next step! Some important tips:
If the image files are in the same folder as the HTML file you are coding in, the relative path should only contain the file name of the image, like this:
If the image files are in a sub-folder (for example, named “Images”) then your relative path should include the sub-folder name and the image file name, like this:
12) Turn one of your images into a clickable image that takes the user to an external website when the user selects it. Do this by embedding the image tag inside of a hyperlink. (See an example of code for a clickable image here). Remember to validate your code before moving on to the next step! Some important tips:
13) Include one ordered or unordered list, with at least three list items, on your home page. You can see examples of lists here. Important tips:
or
for the list element (depending on whether you want an unordered bulleted list or an ordered numbered list.
pairs.
tags.
elements, like this:
14) Before submitting your assignment, validate your HTML file one last time here, using the “Validate by File Upload” option. Note: It is critical that you debug and fix ALL errors identified by the validator before submitting your assignments. Contact your instructor for assistance if you are having difficulty debugging and fixing your errors because it is imperative that all of your code files pass validation.
15) Create a zip archive containing your HTML file and all image files. Make sure you maintain the necessary directory structure in your zip archive so that your webpages will view correctly when unzipped. In other words, if your images are in a sub-folder, in relation to the folder containing your .html file, then you need to maintain that same directory structure in your zip archive, too, including the sub-folder. Submit only the zip file for grading.
Rubric for Grading Assignment
Rubric for Grading Assignment
Exemplary
Accomplished
Developing
Beginning
Points Available
Webpage (HTML file) validates without errors at
https://validator.w3.org/#validate_by_upload
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
20
Website contains 4-6 full paragraphs of well-written, well-thought-out, creative, attractive, and well-organized original content written by the student
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
8
Correctly written HTML5 DOCTYPE statement: <!DOCTYPE html>
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
4
Correctly written tag with lang=”en” attribute; and correctly written and nested and tags, with corresponding end tags for all three of these tags
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
4
Correctly written
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
4
Correctly written charset, description, keywords, and author meta tags
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
8
At least three headings, using at least two types of heading tags. Ex:
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
4
Correct use of
and
tags
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
4
At least 3 external hyperlinks
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
16
At least 3 images on your web page (make sure you also include the image files in your zip archive)
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
8
At least 1 clickable image (an image nested inside of a hyperlink)
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
8
One ordered or unordered list, with at least 3 list items
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
8
Correctly created zip archive that contains all files for webpage (maintaining original folder structure)
Student effectively completed the assignment.
Student partially completed the assignment.
The student provided limited and meaningless substance completing the assignment.
Student failed to complete the assignment.
4
Total
100
***Note: Your website must be written in HTML5 and include the correct HTML5 DOCTYPE statement to receive credit for this assignment.
Place an order in 3 easy steps. Takes less than 5 mins.