100% Guaranteed Results


WEB222 – Solved
$ 29.99
Category:

Description

5/5 – (1 vote)

WEB222 Assignment 3

Assessment Weight:
6% of your final course Grade
Objective:
Practice writing HTML Containers / Media Elements, Updating the DOM with data

Specification:
Update HTML & JavaScript code for each of the following pages according to the instructions outlined below. To begin, download the assignment3.zip file containing all of the files required for Assignment 3 from blackboard.

“Assignment 3 Home” – index.html:

Update the “Assignment 3 Home” page with the following:
1. Add a professional greeting to the visitor, i.e.: “Welcome to my website, I will be demonstrating HTML5 principles and techniques, DOM manipulation”… and so on.
2. Add a relevant header as a title for the next section (step 3)
3. Add a short paragraph that introduces this website, i.e.: “This site contains 8 pages, including: Home, HTML Text, HTML Lists”… and so on. NOTE: This paragraph must include all relevant links to the 7 pages .
4. Add a relevant header as a title for the next section (step 5)
5. Display the following html markup code in your page. (Hint: use html entities)

<!doctype html>
<html>
<head>
<title>WEB222</title>
<script src=”js/myscript.js”></script>
</head>
<body>
<h2>Basic HTML5 Document Structure</h2>
<p>This is a paragraph</p>
</body>
</html>

“HTML Lists” – list.html:

Update the “HTML Lists” page with the following:
1. Inside list.html, create any nested list with meaningful items using healthy food, calories and nutrition.
• The nested list should contain at least one ordered list and at least one unordered list.

2. Update the list.html page to include two containers (i.e.: <div>) with unique id values.

3. Add a relevant header as a title for the next section (step 4)
4. Use the fruits array inside the lists.js file (js/list.js) to write (using JavaScript) an ordered list containing all the fruit inside the array, (ie:”Apples”,”Oranges”,”Pears”,”Grapes”,”Pineapples”,”Mangos”) to one of your containers in the list.html page. Be sure to write to your container (using JavaScript) after the window has completely loaded. The ordered list should look like the image below when complete:

5. Add a relevant header as a title for the next section (step 6)
6. Use the directory array inside the list.js file (js/list.js) to write (using JavaScript) a nested unordered list containing all the files and directories (with their files) inside the array to one of your containers in the list.html page.

You will notice that files have the type “file” and consist of a “name” property, whereas directories have the type “directory” and consist of a “name” property in addition to an array of files. Use these properties to correctly construct your nested unordered list (using JavaScript).

Be sure to write to your container after the window has completely loaded (using JavaScript). The nested unordered list should look like the image below when complete:

“HTML Tables” – table.html:

Update the “HTML Tables” page with the following:
1. Inside table.html, create the following two tables, each with a relevant header as a title:

• The 1st table should be composed of the elements: <table style=”border:1px solid;”>, <tr>, <th>, <td> and <caption> with meaningful table contents, i.e.: a table of your program, courses enrolled, hours of each course etc.
• The 2nd table should be composed of the elements: <table style=”border:1px solid;”>, <tr>, <th>, <td>, <thead>, <tfoot> and <tbody> with meaningful table contents, i.e.: a table of your favourite personalities, authors, descriptions etc.

2. Update the table.html page to include an additional container (i.e.: <div>) with a unique id value.
3. Add a relevant header as a title for the next section (step 4)
4. Use the users array inside the table.js file (js/table.js) to write a complete 3rd table containing all the users inside the array (and an appropriate header row), to your container in the table.html page.

You will notice that users consist of the properties: first_name, last_name, age, and email. Use these properties to correctly construct your table (using JavaScript) with the following headers: First Name, Last Name, Age and Email. You must also ensure that all email addresses are rendered as a valid “mailto” link and will open as a new message in the user’s default mail client when clicked.

Be sure to write to your container after the window has completely loaded. The table should look like the image below when complete:

“HTML Images” – image.html:

Update the “HTML Images” page with the following:

2. Update the image.html page to include an additional container (i.e.: <div>) with a unique id value.
3. Add a relevant header as a title for the next section (step 4)

4. Use the images array inside the image.js file (js/image.js) to write 5 new <figure> elements to your container in the image.html page (using JavaScript). You will notice that each image in the array has the following properties: caption, alt and url. Use these properties to correctly construct (using JavaScript) your <figure> elements such that each element contains a valid image (using url and alt) as well as a caption underneath the image with the message contained within the caption property

Be sure to write to your container after the window has completely loaded (using JavaScript). The <figure> elements should look like the image below when complete (only the first 2 shown):

“HTML5 Audio” – audio.html:
Update the “HTML5 Audio” page with the following:
1. Update the audio.html page to include an additional container (i.e.: <div>) with a unique id value.
2. Use the audio object inside the audio.js file (js/audio.js) to render an audio player in your container within the audio.html page.

You will notice that the audio object consists of the properties: controls and source. Use these properties to correctly construct (using JavaScript) your audio player with (or without) controls, and the correct source options.

Be sure to write to your container after the window has completely loaded.

“HTML5 Video” – video.html:
Update the “HTML5 Video” page with the following:

1. Update the video.html page to include an additional container (i.e.: <div>) with a unique id value.
2. Use the video object inside the video.js file (js/video.js) to render a video player in your container within the video.html page.

You will notice that the video object consists of the properties: controls, width, height and source. Use these properties to correctly construct (using JavaScript) your video player with (or without) controls, in the correct dimensions and using the correct source options.

Be sure to write to your container after the window has completely loaded.

“Honesty Statement” – honesty.html:
Update the “Honesty Statement” page with the following:

Other Requirements
• All tags/attributes must be in lower case. Js must be written in the files given inside js folder.
• All of your html files MUST not contain any errors when tested using the W3C Markup Validation Service:
https://validator.w3.org/

Assignment Submission:
• Zip all of your files (i.e., your assignment3 folder) as assignment3.zip
• Upload the zip file to My.Seneca under Assignments -> Assignment 3 (same submission procedure as Assignments 1 & 2)
• NOTE: Your HTML must not contain any errors when validated ( https://validator.w3.org/ )

Important Note:

Evaluation Rubric

Criteria 80% or above mark 79% or less mark 65% or less
Home page – 1 mark All requirements are complete, page is validated Adequate but not complete Inadequate
List Page – 1.5 mark All requirements are complete, page is validated, js works Adequate but not complete Inadequate
Image page – 1 mark All requirements are complete, page is validated, js works Adequate but not complete Inadequate
Audio Page – 0.5 mark All requirements are complete, page is validated, js works Adequate but not complete Inadequate
Video Page – 1 mark All requirements are complete, page is validated, js works Adequate but not complete Inadequate
Table Page – 1 mark All requirements are complete, page is validated, js works Adequate but not complete Inadequate

Reviews

There are no reviews yet.

Be the first to review “WEB222 – Solved”

Your email address will not be published. Required fields are marked *

Related products