Looking for CSIT884 (IA25[1]) Web Development test answers and solutions? Browse our comprehensive collection of verified answers for CSIT884 (IA25[1]) Web Development at moodle.uowplatform.edu.au.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Create 2 buttons on a web page: "Console Hi" and "Alert Hi".
When the user clicks on the button "Console Hi", display a message to the console: "Hi there! JavaScript is cool!"
When the user clicks on the button "Alert Hi", an alert window will appear and it displays the same message: "Hi there! JavaScript is cool!"
(If you are using Chrome, to view the Console, right click on the web page and select "Inspect", then click on the "Console" tab. If you are using Firefox, to view the Console, right click on the web page and select "Inspect Element", then click on the "Console" tab.)
Create a webpage using HTML only (no CSS, no JavaScript). Your webpage must reproduce the structure shown in the reference layout provided (Your Full Name, tables, headings, lists, emojis, and links). Follow the instructions below strictly.
At the top of the webpage:
Display a level-1 heading (<h1>) containing the text:“Your Full Name, Your Student Number”
Below it, add the heading “Part 1 — Subject Information” using <h2>.
Add a short paragraph stating:“Provide at least one subject row. Links must open in a new tab.”
Then create a bordered table with the following column headings:
Subject code and name
Lecture time
Lab time
Link
Fill one example subject row with any realistic sample data. The link must open in a new tab using target="_blank".
Under a new <h2> heading titled “Part 2 — Academic Misconduct Types”, add a short paragraph stating:
“Two types from the UOW Academic Integrity page. Type is italic and blue, description is an unordered list, emoji is large.”
Then create a bordered table with three column headings:
Type
Description
Emoji
Add two rows, one for each academic misconduct type:
Cheating
Plagiarism
For each row:
Display the Type in italic and blue (e.g., <i><font color="blue">Cheating</font></i>).
Provide a description using an unordered list (<ul>) with at least two bullet points.
Display a large emoji (e.g., <font size="6">😮</font>).
Create a new <h2> heading titled “Part 3 — Academic Consideration”, followed by:
A short paragraph:“Provide three clear steps (ordered list) a UOW student must follow to apply.”
An ordered list (<ol>) containing three steps explaining how a student applies for Academic Consideration at UOW.
A short sentence describing acceptable supporting evidence, e.g.:“Examples include a medical certificate, official letters, police report or employer documentation.”
At the bottom, include a heading “References”, followed by two clickable links to:
UOW — Academic Integrity (Students)
UOW — Academic Consideration
Each link must open in a new tab.
competition2.html that you developed in Part 2 above into a new file called competition3.html. We will use external CSSfor it.
Create a CSS file calledcompetition.css, make sure that the file extension is correct.
Use a text editor and open the filecompetition3.html. Copy all the CSS code inside the style tag of competition3.html into the CSS file competition.css. Save the CSS file competition.css.
Remove all the CSS code and the style tag in the filecompetition3.html. After that, in the head element, add a link tag:<link rel="stylesheet" type="text/css" href="competition.css" />
Save the file competition3.htmland use a web browser to open it. You will see that all the CSS styles will be displayed.
competition.html that you developed last week into a new file called competition2.html. We will use document CSS for it. In the head element, add a styletag.
Follow the steps below to modify the file
competition2.html.
Step 1. Using font-size property The CSS property sets the size of the font.
Remove all the font tags from the text
World Gurning Competition and the smiley face, and put them into a single paragraph tag (p). Give this paragraph tag the id called competitionPara. Use CSS id selector to select
the id
competitionPara and set font-size to 50px.
In the first table row tag (tr), give it an id calledheaderRow. Use the document CSS to select the id headerRow and set font-size to 40px.
In all the table data tags (td) on the ranking column, set the class torankingNumber. Use the document CSS to select the class rankingNumber and set font-size to 60px.
Step 2. Using color property The CSS property sets the foreground color value of an element's text.
Put the word
World into a span tag and give it an id called word1. Use CSS id selector to select the id word1 and set color to orange.
Put the wordGurning into another span tag and give it an id called word2. Use CSS id selector to select the id word2 and set color to pink.
Put the wordCompetition into a 3rd span tag and give it an id called word3. Use CSS id selector to select the id word3 and set color to blue.
Use the document CSS to select the idheaderRow and set color to navy.
Use the document CSS to select the classrankingNumber and set color to maroon.
In all the unordered list tags (ul), set the class tomemberList. Use the document CSS to select the class memberList and set color to green.
In all the list item tags (li) that contain the team leader, set the class toleader. Use the document CSS to select the class leader and set color to purple.
Step 3. Using background-color property The CSS property sets the background color of an element.
Use the document CSS to select the id
competitionPara and set background-color to #ff000010.
Use the document CSS to select the idheaderRow and set background-color to #00000010.
In the table row tags (tr) that correspond to the odd ranking numbers, set the class tooddRow. In the table row tags (tr) that correspond to the even ranking numbers, set the class to evenRow.
Use the document CSS to select the classoddRow and set background-color to #cc007711.
Use the document CSS to select the classevenRow and set background-color to #55ff7720.
Step 4. Using padding property The .
Use the document CSS to select the id
competitionPara and set padding to 30px.
In the table tag, give it an id calledteamTable. Use the document CSS to select all the table header tags (th) which are descendants of the id teamTable and set padding to 20px.
Use the document CSS to select all the table data tags (td) which are descendants of the idteamTable and set padding to 20px.
Use the document CSS to select all the list item tags (li) which are children of the classmemberList and set padding to 10px.
Step 5. Using text-align and vertical-align properties The CSS property sets the horizontal alignment of a block element or table-cell box.
The CSS property sets the vertical alignment of an inline, inline-block or table-cell box.
Use the document CSS to select the id
competitionPara and set text-align to center.
Last week we used the attributesalign and valign for the table header tag (th) and table data tag (td). This week we will use CSS, so we now remove all the attributes align and valignfrom
the table header tags (th) and the table data tags (td).
In all the table header tags (th) and table data tags (td) of the 1st column, set the class torankColumn. Use document CSS to select the class rankColumn and set text-align to right and vertical-alignto
top.
In all the table header tags (th) and table data tags (td) of the 2nd column, set the class toteamColumn. Use document CSS to select the class teamColumn and set text-align to center and vertical-alignto
top.
In all the table header tags (th) and table data tags (td) of the 3rd column, set the class tomemberColumn. Use document CSS to select the class memberColumn and set text-align to leftand
vertical-align to top.
Step 6. Using border-style, border-color and border-width properties The . The values are: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset.
The .
The .
Use the document CSS to select the id
competitionPara and set border-style to dotted, border-color to red, border-width to 5px.
Use the document CSS to select all the table header tags (th) which are descendants of the idteamTable and set border-style to dashed, border-color to black, border-widthto 5px.
Use the document CSS to select all the table data tags (td) which are descendants of the idteamTable and set border-style to solid, border-color to gray, border-widthto 1px.
Step 7. Using border-collapse and border-spacing propertiesThe CSS property sets whether cells inside a table have shared or separate borders. The values are: collapse, separate.
The is separate.
In the table tag (table), remove the attribute
border.
Use document CSS to select the id
teamTable and set border-style to dotted, border-collapse to separate, border-spacing to 10px. Observe what it looks like for the table border and table cell borders.
Now, in the above document CSS id selector
teamTable, set border-style to none, border-collapse to collapse. Observe what it looks like for the table border and table cell borders this time. Notice the difference?!
Last week, we developed a web page to display a fictional "World Gurning Competition".
In this week's exercise, you will follow the steps to add CSS styling to this web page. We will practice all 3 different ways to add styling to the web page:
When you complete this exercise, the webpage will look like the following:
competition.html that you developed last week into a new file called competition1.html. We will use inline CSS for it. Follow the steps below to modify the file competition1.html.
Step 1. Using font-size property The CSS property sets the size of the font.
Last week we used the HTML
font tag to set the font size and color for the text World Gurning Competitionand the smiley face. Now we will use CSS instead.
Remove all thefont tags from the text World Gurning Competition and the smiley face, and put all of them into a single paragraph tag (p). In this paragraph tag, use inline CSS to set font-sizeto
50px.
In the first table row tag (tr), use inline CSS to set font-sizeto 40px.
In all the table data tags (td) on the ranking column, use inline CSS to set font-size to 60px.
Step 2. Using color property The CSS property sets the foreground color value of an element's text.
Put the word
World into a span tag; and in this span tag, use inline CSS to set color to orange. Put the word Gurning into another span tag, and use inline CSS to set color to pink.
Put the word
Competition into a 3rd span tag and use inline CSS to set color to blue.
In the first table row tag (tr), use inline CSS to setcolor to navy.
In all the table data tags (td) on the ranking column, use inline CSS to setcolor to maroon.
In all the unordered list tags (ul), use inline CSS to setcolor to green.
In all the list item tags (li) that contain the team leader, use inline CSS to setcolor to purple.
Step 3. Using background-color property The CSS property sets the background color of an element.
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set background-color to #ff000010.
In the first table row tag (tr), use inline CSS to setbackground-color to #00000010.
In the table row tags (tr) that correspond to the odd ranking numbers, use inline CSS to setbackground-color to #cc007711.
In the table row tags (tr) that correspond to the even ranking numbers, use inline CSS to setbackground-color to #55ff7720.
Step 4. Using padding property The .
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set padding to 30px.
In all the table header tag (th), use inline CSS to setpadding to 20px.
In all the table data tag (td), use inline CSS to setpadding to 20px.
In all the list item tags (li), use inline CSS to setpadding to 10px.
Step 5. Using text-align and vertical-align properties The CSS property sets the horizontal alignment of a block element or table-cell box.
The CSS property sets the vertical alignment of an inline, inline-block or table-cell box.
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set text-align to center.
Last week we used the attributesalign and valign for the table header tag (th) and table data tag (td). This week we will use CSS, so we now remove all the attributes align and valignfrom
the th and td tags.
In all the table header tags (th) and table data tags (td) of the 1st column, use inline CSS to settext-align to right and vertical-align to top.
In all the table header tags (th) and table data tags (td) of the 2nd column, use inline CSS to settext-align to center and vertical-align to top.
In all the table header tags (th) and table data tags (td) of the 3rd column, use inline CSS to settext-align to left and vertical-align to top.
Step 6. Using border-style, border-color and border-width propertiesThe . The values are: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset.
The .
The .
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set border-style to dotted, border-color to red, border-width to 5px.
In all the table header tags (th), use inline CSS to set
border-style to dashed, border-color to black, border-width to 5px.
In all the table data tags (td), use inline CSS to set
border-style to solid, border-color to gray, border-width to 1px.
Step 7. Using border-collapse and border-spacing propertiesThe CSS property sets whether cells inside a table have shared or separate borders. The values are: collapse, separate.
The is separate.
In the table tag (table), remove the attribute
border.
In the table tag, use inline CSS to set
border-style to dotted, border-collapse to separate, border-spacing to 10px. Observe what it looks like for the table border and table cell borders.
Now, in the above table tag, use inline CSS to set
border-style to none, border-collapse to collapse. Observe what it looks like for the table border and table cell borders this time. Notice the difference?!
Last week, we developed a web page to display a fictional "World Gurning Competition".
In this week's exercise, you will follow the steps to add CSS styling to this web page. We will practice all 3 different ways to add styling to the web page:
When you complete this exercise, the webpage will look like the following:
competition.html that you developed last week into a new file called competition1.html. We will use inline CSS for it. Follow the steps below to modify the file competition1.html.
Step 1. Using font-size property The CSS property sets the size of the font.
Last week we used the HTML
font tag to set the font size and color for the text World Gurning Competitionand the smiley face. Now we will use CSS instead.
Remove all thefont tags from the text World Gurning Competition and the smiley face, and put all of them into a single paragraph tag (p). In this paragraph tag, use inline CSS to set font-sizeto
50px.
In the first table row tag (tr), use inline CSS to set font-sizeto 40px.
In all the table data tags (td) on the ranking column, use inline CSS to set font-size to 60px.
Step 2. Using color property The CSS property sets the foreground color value of an element's text.
Put the word
World into a span tag; and in this span tag, use inline CSS to set color to orange. Put the word Gurning into another span tag, and use inline CSS to set color to pink.
Put the word
Competition into a 3rd span tag and use inline CSS to set color to blue.
In the first table row tag (tr), use inline CSS to setcolor to navy.
In all the table data tags (td) on the ranking column, use inline CSS to setcolor to maroon.
In all the unordered list tags (ul), use inline CSS to setcolor to green.
In all the list item tags (li) that contain the team leader, use inline CSS to setcolor to purple.
Step 3. Using background-color property The CSS property sets the background color of an element.
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set background-color to #ff000010.
In the first table row tag (tr), use inline CSS to setbackground-color to #00000010.
In the table row tags (tr) that correspond to the odd ranking numbers, use inline CSS to setbackground-color to #cc007711.
In the table row tags (tr) that correspond to the even ranking numbers, use inline CSS to setbackground-color to #55ff7720.
Step 4. Using padding property The .
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set padding to 30px.
In all the table header tag (th), use inline CSS to setpadding to 20px.
In all the table data tag (td), use inline CSS to setpadding to 20px.
In all the list item tags (li), use inline CSS to setpadding to 10px.
Step 5. Using text-align and vertical-align properties The CSS property sets the horizontal alignment of a block element or table-cell box.
The CSS property sets the vertical alignment of an inline, inline-block or table-cell box.
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set text-align to center.
Last week we used the attributesalign and valign for the table header tag (th) and table data tag (td). This week we will use CSS, so we now remove all the attributes align and valignfrom
the th and td tags.
In all the table header tags (th) and table data tags (td) of the 1st column, use inline CSS to settext-align to right and vertical-align to top.
In all the table header tags (th) and table data tags (td) of the 2nd column, use inline CSS to settext-align to center and vertical-align to top.
In all the table header tags (th) and table data tags (td) of the 3rd column, use inline CSS to settext-align to left and vertical-align to top.
Step 6. Using border-style, border-color and border-width propertiesThe . The values are: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset.
The .
The .
In the paragraph tag (p) that contains the text
World Gurning Competition, use inline CSS to set border-style to dotted, border-color to red, border-width to 5px.
In all the table header tags (th), use inline CSS to set
border-style to dashed, border-color to black, border-width to 5px.
In all the table data tags (td), use inline CSS to set
border-style to solid, border-color to gray, border-width to 1px.
Step 7. Using border-collapse and border-spacing propertiesThe CSS property sets whether cells inside a table have shared or separate borders. The values are: collapse, separate.
The is separate.
In the table tag (table), remove the attribute
border.
In the table tag, use inline CSS to set
border-style to dotted, border-collapse to separate, border-spacing to 10px. Observe what it looks like for the table border and table cell borders.
Now, in the above table tag, use inline CSS to set
border-style to none, border-collapse to collapse. Observe what it looks like for the table border and table cell borders this time. Notice the difference?!
University of Wollongong – India Campus (GIT City)Campus Tech Day 2025
Create a complete webpage using only HTML (no CSS or JavaScript) to reproduce the Campus Tech Day 2025 page layout shown in the given sample (PDF/screenshot).
Create a new HTML file
Save as uow-india.html
Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>
Add a Header Section
Use a <table> for layout.
Include a logo image and event info (date, campus, title).
Insert a horizontal line <hr />.
Create a Navigation Menu
Use internal links: About | Schedule | Speakers | Rubric | Register.
About Section
Include <h2>About the Event</h2>
Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like <, >, &, °.
Add a code block using <pre><code>...</code></pre>.
Schedule Section
Create a <table> with <caption>Event Schedule</caption>.
Use rowspan and colspan.
Show different sessions, rooms, and breaks.
Speakers Section
Table with Name, Bio, and Photo columns.
Add two speakers: Prof. Kiran Trivedi and Mr. Nimay Kalyani.
Include <ul> and <ol> lists inside.
Add a Glossary using <dl>, <dt>, <dd>.
Marking Rubric Section
Create a rubric table (as shown) with headings and marks totaling 100.
Register Section
Add one relative link (contact.html) and one external link (UOW website).
Mention index.html as the default page.
Footer Section
Include copyright (© 2025) and a “Back to top” link.
HTML Good Practices
Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).
Submit your single HTML file (uow-india.html or index.html) along with any images used.
THE PAGE SHOULD BE DISPLAYED LIKE FOLLOWING
University of Wollongong — India Campus (GIT City)Campus Tech Day 2025 | Wed, 12 Nov 2025 | GIT City, India |
About | Schedule | Speakers | Marking Rubric | Register
Welcome to Campus Tech Day 2025 at the University of Wollongong — India Campus, located in GIT City. This mockup serves as a photo-style reference for your HTML-only assignment (no CSS or JavaScript).
"Good design is as little design as possible."
— Dieter Rams
Fun fact: Water boils at approximately 100°C at sea level. Use of character entities like < > & " ' is required wherever appropriate.
// Code sample (remember to escape < > & if needed)
int sum = 0;
for (int i = 0; i < 3; i++) {
sum = sum + i;
}
| Time | Session | Room |
|---|---|---|
| 08:30-09:00 | Registration & Welcome | |
| 09:00-10:00 | Keynote: The Future of TinyML | A101 |
| Demo: HTML5 Elements in Practice | A102 | |
| 10:00-10:30 | Coffee Break | |
| 10:30-11:30 | Workshop: Tables, Lists & Links | B201 |
| 11:30-12:30 | Panel: Careers in Web Development | B202 |
Jump to: Speakers | Marking Rubric | Register
| Name | Bio | Photo |
|---|---|---|
| Prof. Kiran Trivedi | Expert in Edge AI and Web Technologies. Focus on HTML pedagogy, TinyML, and accessibility-first design.
| |
| Mr. Nimay Kalyani | Engineer and instructor specializing in Human-Computer Interaction and prototyping.
|
Recreate this page as closely as possible using only HTML tags and attributes demonstrated in class. No CSS/JS. Ensure proper nesting and valid use of elements.
| Criteria | Details | Marks |
|---|---|---|
| Document structure & semantics | Proper use of <header>, <nav>, <section>, <footer>, headings | 20 |
| Tables (caption, headers, alignment, rowspan/colspan) | Schedule + Speakers tables match layout and attributes | 20 |
| Lists (ul/ol/dl) | Correct list nesting and semantics | 10 |
| Links (internal anchors, relative, external) | Working in-page and inter-page links | 10 |
| Images with alt text (one as a link) | Placeholder images + proper alt | 10 |
| Text formatting & character entities | Use of <mark>, <ins>, <del>, <sub>/<sup>, & entities (< > & " ' °) | 10 |
| Preformatted/code & blockquote | Correct escaping inside <pre>/<code> | 10 |
| Accessibility & correctness | Heading order, image alts, link clarity | 5 |
| XHTML discipline | Lowercase tags, quoted attribute values, proper nesting, self-closing where needed | 5 |
Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.
Please visit our Contact page or email [email protected] to register.
Also visit: UOW Website
Use of index page: If this file is saved as index.html, it will be the default page of its folder.
© 2025 University of Wollongong — India Campus (GIT City) | Back to top
University of Wollongong – India Campus (GIT City)Campus Tech Day 2025
Create a complete webpage using only HTML (no CSS or JavaScript) to reproduce the Campus Tech Day 2025 page layout shown in the given sample (PDF/screenshot).
Create a new HTML file
Save as uow-india.html
Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>
Add a Header Section
Use a <table> for layout.
Include a logo image and event info (date, campus, title).
Insert a horizontal line <hr />.
Create a Navigation Menu
Use internal links: About | Schedule | Speakers | Rubric | Register.
About Section
Include <h2>About the Event</h2>
Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like <, >, &, °.
Add a code block using <pre><code>...</code></pre>.
Schedule Section
Create a <table> with <caption>Event Schedule</caption>.
Use rowspan and colspan.
Show different sessions, rooms, and breaks.
Speakers Section
Table with Name, Bio, and Photo columns.
Add two speakers: Prof. Kiran Trivedi and Mr. Nimay Kalyani.
Include <ul> and <ol> lists inside.
Add a Glossary using <dl>, <dt>, <dd>.
Marking Rubric Section
Create a rubric table (as shown) with headings and marks totaling 100.
Register Section
Add one relative link (contact.html) and one external link (UOW website).
Mention index.html as the default page.
Footer Section
Include copyright (© 2025) and a “Back to top” link.
HTML Good Practices
Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).
Submit your single HTML file (uow-india.html or index.html) along with any images used.
THE PAGE SHOULD BE DISPLAYED LIKE FOLLOWING
University of Wollongong — India Campus (GIT City)Campus Tech Day 2025 | Wed, 12 Nov 2025 | GIT City, India |
About | Schedule | Speakers | Marking Rubric | Register
Welcome to Campus Tech Day 2025 at the University of Wollongong — India Campus, located in GIT City. This mockup serves as a photo-style reference for your HTML-only assignment (no CSS or JavaScript).
"Good design is as little design as possible."
— Dieter Rams
Fun fact: Water boils at approximately 100°C at sea level. Use of character entities like < > & " ' is required wherever appropriate.
// Code sample (remember to escape < > & if needed)
int sum = 0;
for (int i = 0; i < 3; i++) {
sum = sum + i;
}
| Time | Session | Room |
|---|---|---|
| 08:30-09:00 | Registration & Welcome | |
| 09:00-10:00 | Keynote: The Future of TinyML | A101 |
| Demo: HTML5 Elements in Practice | A102 | |
| 10:00-10:30 | Coffee Break | |
| 10:30-11:30 | Workshop: Tables, Lists & Links | B201 |
| 11:30-12:30 | Panel: Careers in Web Development | B202 |
Jump to: Speakers | Marking Rubric | Register
| Name | Bio | Photo |
|---|---|---|
| Prof. Kiran Trivedi | Expert in Edge AI and Web Technologies. Focus on HTML pedagogy, TinyML, and accessibility-first design.
| |
| Mr. Nimay Kalyani | Engineer and instructor specializing in Human-Computer Interaction and prototyping.
|
Recreate this page as closely as possible using only HTML tags and attributes demonstrated in class. No CSS/JS. Ensure proper nesting and valid use of elements.
| Criteria | Details | Marks |
|---|---|---|
| Document structure & semantics | Proper use of <header>, <nav>, <section>, <footer>, headings | 20 |
| Tables (caption, headers, alignment, rowspan/colspan) | Schedule + Speakers tables match layout and attributes | 20 |
| Lists (ul/ol/dl) | Correct list nesting and semantics | 10 |
| Links (internal anchors, relative, external) | Working in-page and inter-page links | 10 |
| Images with alt text (one as a link) | Placeholder images + proper alt | 10 |
| Text formatting & character entities | Use of <mark>, <ins>, <del>, <sub>/<sup>, & entities (< > & " ' °) | 10 |
| Preformatted/code & blockquote | Correct escaping inside <pre>/<code> | 10 |
| Accessibility & correctness | Heading order, image alts, link clarity | 5 |
| XHTML discipline | Lowercase tags, quoted attribute values, proper nesting, self-closing where needed | 5 |
Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.
Please visit our Contact page or email [email protected] to register.
Also visit: UOW Website
Use of index page: If this file is saved as index.html, it will be the default page of its folder.
© 2025 University of Wollongong — India Campus (GIT City) | Back to top
competition.html. Please make sure that the file extension is html.
In thehead element, use the title tag to set the title as Programming Exercise.
In thebody element, use the h1 tag to create a heading with your name and student number, and also display a Hello Worldtext.
When you complete this step, open the web page you created using a web browser. Your web page should look like the following:
table tag to create a table. In the table tag, specify the attribute borderso that the table has a visible border. The table should have 3 rows as follows:
ul tag to create unordered lists that contain the team members. It should look like the following:img tag to add images. In the img tag, specify the attribute widthto make the width of images become 300 pixels. You can use any image files for this task (you can either use your imagination to
design flag images, or you can use pictures of your pets). When you complete this step, it should look like the following:
Create 2 links to two fictional web pages.
The 1st link address ishttp://didd.gov and the 2nd link address is http://binn.gov Set the attribute targetto appropriate value so that the link should open up the linked web page in a new tab/window.
When you complete this step, it should look like the following:
Make changes to the web page as shown in the picture below.
The textsThing 1 and Thing 2become bold.
The textsteam leaderbecome italic.
Hello World to World Gurning Competition.
Use thefont tag to make text colorful. In the font tag, specify appropriate values for the attributes size and color. When you complete this step, it should look like the following:
HTML character entity smiley face.
When you complete this step, it should look like the following:
Use appropriate attributes to make the 1st column of the table aligned to the right, the 2nd column the center, and the 3rd column to the left.
Make all the vertical alignment to the top.
Change the table border to become invisible.
When you complete this step, it should look like the following:Use your imagination to add some more teams to the competition!
University of Wollongong – India Campus (GIT City)Campus Tech Day 2025
Create a complete webpage using only HTML (no CSS or JavaScript) to reproduce the Campus Tech Day 2025 page layout shown in the given sample (PDF/screenshot).
Create a new HTML file
Save as uow-india.html
Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>
Add a Header Section
Use a <table> for layout.
Include a logo image and event info (date, campus, title).
Insert a horizontal line <hr />.
Create a Navigation Menu
Use internal links: About | Schedule | Speakers | Rubric | Register.
About Section
Include <h2>About the Event</h2>
Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like <, >, &, °.
Add a code block using <pre><code>...</code></pre>.
Schedule Section
Create a <table> with <caption>Event Schedule</caption>.
Use rowspan and colspan.
Show different sessions, rooms, and breaks.
Speakers Section
Table with Name, Bio, and Photo columns.
Add two speakers: Prof. Kiran Trivedi and Mr. Nimay Kalyani.
Include <ul> and <ol> lists inside.
Add a Glossary using <dl>, <dt>, <dd>.
Marking Rubric Section
Create a rubric table (as shown) with headings and marks totaling 100.
Register Section
Add one relative link (contact.html) and one external link (UOW website).
Mention index.html as the default page.
Footer Section
Include copyright (© 2025) and a “Back to top” link.
HTML Good Practices
Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).
Submit your single HTML file (uow-india.html or index.html) along with any images used.
THE PAGE SHOULD BE DISPLAYED LIKE FOLLOWING
University of Wollongong — India Campus (GIT City)Campus Tech Day 2025 | Wed, 12 Nov 2025 | GIT City, India |
About | Schedule | Speakers | Marking Rubric | Register
Welcome to Campus Tech Day 2025 at the University of Wollongong — India Campus, located in GIT City. This mockup serves as a photo-style reference for your HTML-only assignment (no CSS or JavaScript).
"Good design is as little design as possible."
— Dieter Rams
Fun fact: Water boils at approximately 100°C at sea level. Use of character entities like < > & " ' is required wherever appropriate.
// Code sample (remember to escape < > & if needed)
int sum = 0;
for (int i = 0; i < 3; i++) {
sum = sum + i;
}
| Time | Session | Room |
|---|---|---|
| 08:30-09:00 | Registration & Welcome | |
| 09:00-10:00 | Keynote: The Future of TinyML | A101 |
| Demo: HTML5 Elements in Practice | A102 | |
| 10:00-10:30 | Coffee Break | |
| 10:30-11:30 | Workshop: Tables, Lists & Links | B201 |
| 11:30-12:30 | Panel: Careers in Web Development | B202 |
Jump to: Speakers | Marking Rubric | Register
| Name | Bio | Photo |
|---|---|---|
| Prof. Kiran Trivedi | Expert in Edge AI and Web Technologies. Focus on HTML pedagogy, TinyML, and accessibility-first design.
| |
| Mr. Nimay Kalyani | Engineer and instructor specializing in Human-Computer Interaction and prototyping.
|
Recreate this page as closely as possible using only HTML tags and attributes demonstrated in class. No CSS/JS. Ensure proper nesting and valid use of elements.
| Criteria | Details | Marks |
|---|---|---|
| Document structure & semantics | Proper use of <header>, <nav>, <section>, <footer>, headings | 20 |
| Tables (caption, headers, alignment, rowspan/colspan) | Schedule + Speakers tables match layout and attributes | 20 |
| Lists (ul/ol/dl) | Correct list nesting and semantics | 10 |
| Links (internal anchors, relative, external) | Working in-page and inter-page links | 10 |
| Images with alt text (one as a link) | Placeholder images + proper alt | 10 |
| Text formatting & character entities | Use of <mark>, <ins>, <del>, <sub>/<sup>, & entities (< > & " ' °) | 10 |
| Preformatted/code & blockquote | Correct escaping inside <pre>/<code> | 10 |
| Accessibility & correctness | Heading order, image alts, link clarity | 5 |
| XHTML discipline | Lowercase tags, quoted attribute values, proper nesting, self-closing where needed | 5 |
Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.
Please visit our Contact page or email [email protected] to register.
Also visit: UOW Website
Use of index page: If this file is saved as index.html, it will be the default page of its folder.
© 2025 University of Wollongong — India Campus (GIT City) | Back to top