logo

Crowdly

Browser

Add to Chrome

CSIT884 (IA25[1]) Web Development

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!

Lab 1 – HTML Assignment

University of Wollongong – India Campus (GIT City)

Campus Tech Day 2025

Objective

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).

Task Summary

  1. Create a new HTML file

    • Save as uow-india.html

    • Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>

  2. Add a Header Section

    • Use a <table> for layout.

    • Include a logo image and event info (date, campus, title).

    • Insert a horizontal line <hr />.

  3. Create a Navigation Menu

    • Use internal links: About | Schedule | Speakers | Rubric | Register.

  4. About Section

    • Include <h2>About the Event</h2>

    • Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like &lt;, &gt;, &amp;, &deg;.

    • Add a code block using <pre><code>...</code></pre>.

  5. Schedule Section

    • Create a <table> with <caption>Event Schedule</caption>.

    • Use rowspan and colspan.

    • Show different sessions, rooms, and breaks.

  6. 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>.

  7. Marking Rubric Section

    • Create a rubric table (as shown) with headings and marks totaling 100.

  8. Register Section

    • Add one relative link (contact.html) and one external link (UOW website).

    • Mention index.html as the default page.

  9. Footer Section

    • Include copyright (&copy; 2025) and a “Back to top” link.

  10. HTML Good Practices

    • Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).

Submission

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

About the Event

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;

}

Schedule

TimeSessionRoom
08:30-09:00Registration & Welcome
09:00-10:00Keynote: The Future of TinyMLA101
Demo: HTML5 Elements in PracticeA102
10:00-10:30Coffee Break
10:30-11:30Workshop: Tables, Lists & LinksB201
11:30-12:30Panel: Careers in Web DevelopmentB202

Jump to: Speakers | Marking Rubric | Register

Speakers

NameBioPhoto
Prof. Kiran Trivedi

Expert in Edge AI and Web Technologies. Focus on HTML pedagogyTinyML, and accessibility-first design.

  • Talk: "From HTML to Hardware"
  • Interests: AI, TinyML, Accessibility
Mr. Nimay Kalyani

Engineer and instructor specializing in Human-Computer Interaction and prototyping.

  1. Topic 1: Usability Heuristics
  2. Topic 2: Semantic HTML

Glossary

HTMLHyperText Markup LanguageAlt TextAccessible description for imagesIDUnique identifier for in-page linking

Marking Rubric (HTML-Only Assignment)

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.

CriteriaDetailsMarks
Document structure & semanticsProper use of <header><nav><section><footer>, headings20
Tables (caption, headers, alignment, rowspan/colspan)Schedule + Speakers tables match layout and attributes20
Lists (ul/ol/dl)Correct list nesting and semantics10
Links (internal anchors, relative, external)Working in-page and inter-page links10
Images with alt text (one as a link)Placeholder images + proper alt10
Text formatting & character entitiesUse of <mark><ins><del><sub>/<sup>, & entities (< > & " ' °)10
Preformatted/code & blockquoteCorrect escaping inside <pre>/<code>10
Accessibility & correctnessHeading order, image alts, link clarity5
XHTML disciplineLowercase tags, quoted attribute values, proper nesting, self-closing where needed5

Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.

Register

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

View this question
In this exercise, you will follow the steps below to develop a web page. The web page is to display a fictional "World Gurning Competition". When you complete this exercise, the webpage will look like the following:

pix1

Step 1. Create a web page to display Hello World

Use a text editor to create a HTML file. You should save the file as competition.html. Please make sure that the file extension is html

.

In the head element, use the title tag to set the title as Programming Exercise

.

In the body element, use the h1 tag to create a heading with your name and student number, and also display a Hello World

text.

When you complete this step, open the web page you created using a web browser. Your web page should look like the following:

pix1

Step 2. Add a table

Use the table tag to create a table. In the table tag, specify the attribute border

so that the table has a visible border. The table should have 3 rows as follows:

pix

Step 3. Add unordered lists

Use the ul tag to create unordered lists that contain the team members. It should look like the following:

pix

Step 4. Add images

Use the img tag to add images. In the img tag, specify the attribute width

to 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:

pix

Step 5. Add links

Create 2 links to two fictional web pages.

The 1st link address is http://didd.gov and the 2nd link address is http://binn.gov Set the attribute target

to 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:

pix

Step 6. Set text bold and italic.

Make changes to the web page as shown in the picture below.

The texts Thing 1 and Thing 2

become bold.

The texts team leader

become italic.

pix

Step 7. Make text colorful

Change the text Hello World to World Gurning Competition

.

Use the font 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:

pix

Step 8. Add a smiley face using character entities.

Use a character entity to add a smiley face. To find the code for a smiley face, do a Google search on HTML character entity smiley face

.

When you complete this step, it should look like the following:

pix

Step 9. Styling the table.

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:

pix

Step 10. Add more teams.

Use your imagination to add some more teams to the competition!

View this question

Lab 1 – HTML Assignment

University of Wollongong – India Campus (GIT City)

Campus Tech Day 2025

Objective

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).

Task Summary

  1. Create a new HTML file

    • Save as uow-india.html

    • Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>

  2. Add a Header Section

    • Use a <table> for layout.

    • Include a logo image and event info (date, campus, title).

    • Insert a horizontal line <hr />.

  3. Create a Navigation Menu

    • Use internal links: About | Schedule | Speakers | Rubric | Register.

  4. About Section

    • Include <h2>About the Event</h2>

    • Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like &lt;, &gt;, &amp;, &deg;.

    • Add a code block using <pre><code>...</code></pre>.

  5. Schedule Section

    • Create a <table> with <caption>Event Schedule</caption>.

    • Use rowspan and colspan.

    • Show different sessions, rooms, and breaks.

  6. 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>.

  7. Marking Rubric Section

    • Create a rubric table (as shown) with headings and marks totaling 100.

  8. Register Section

    • Add one relative link (contact.html) and one external link (UOW website).

    • Mention index.html as the default page.

  9. Footer Section

    • Include copyright (&copy; 2025) and a “Back to top” link.

  10. HTML Good Practices

    • Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).

Submission

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

About the Event

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;

}

Schedule

TimeSessionRoom
08:30-09:00Registration & Welcome
09:00-10:00Keynote: The Future of TinyMLA101
Demo: HTML5 Elements in PracticeA102
10:00-10:30Coffee Break
10:30-11:30Workshop: Tables, Lists & LinksB201
11:30-12:30Panel: Careers in Web DevelopmentB202

Jump to: Speakers | Marking Rubric | Register

Speakers

NameBioPhoto
Prof. Kiran Trivedi

Expert in Edge AI and Web Technologies. Focus on HTML pedagogyTinyML, and accessibility-first design.

  • Talk: "From HTML to Hardware"
  • Interests: AI, TinyML, Accessibility
Mr. Nimay Kalyani

Engineer and instructor specializing in Human-Computer Interaction and prototyping.

  1. Topic 1: Usability Heuristics
  2. Topic 2: Semantic HTML

Glossary

HTMLHyperText Markup LanguageAlt TextAccessible description for imagesIDUnique identifier for in-page linking

Marking Rubric (HTML-Only Assignment)

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.

CriteriaDetailsMarks
Document structure & semanticsProper use of <header><nav><section><footer>, headings20
Tables (caption, headers, alignment, rowspan/colspan)Schedule + Speakers tables match layout and attributes20
Lists (ul/ol/dl)Correct list nesting and semantics10
Links (internal anchors, relative, external)Working in-page and inter-page links10
Images with alt text (one as a link)Placeholder images + proper alt10
Text formatting & character entitiesUse of <mark><ins><del><sub>/<sup>, & entities (< > & " ' °)10
Preformatted/code & blockquoteCorrect escaping inside <pre>/<code>10
Accessibility & correctnessHeading order, image alts, link clarity5
XHTML disciplineLowercase tags, quoted attribute values, proper nesting, self-closing where needed5

Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.

Register

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

View this question

Lab 1 – HTML Assignment

University of Wollongong – India Campus (GIT City)

Campus Tech Day 2025

Objective

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).

Task Summary

  1. Create a new HTML file

    • Save as uow-india.html

    • Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>

  2. Add a Header Section

    • Use a <table> for layout.

    • Include a logo image and event info (date, campus, title).

    • Insert a horizontal line <hr />.

  3. Create a Navigation Menu

    • Use internal links: About | Schedule | Speakers | Rubric | Register.

  4. About Section

    • Include <h2>About the Event</h2>

    • Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like &lt;, &gt;, &amp;, &deg;.

    • Add a code block using <pre><code>...</code></pre>.

  5. Schedule Section

    • Create a <table> with <caption>Event Schedule</caption>.

    • Use rowspan and colspan.

    • Show different sessions, rooms, and breaks.

  6. 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>.

  7. Marking Rubric Section

    • Create a rubric table (as shown) with headings and marks totaling 100.

  8. Register Section

    • Add one relative link (contact.html) and one external link (UOW website).

    • Mention index.html as the default page.

  9. Footer Section

    • Include copyright (&copy; 2025) and a “Back to top” link.

  10. HTML Good Practices

    • Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).

Submission

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

About the Event

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;

}

Schedule

TimeSessionRoom
08:30-09:00Registration & Welcome
09:00-10:00Keynote: The Future of TinyMLA101
Demo: HTML5 Elements in PracticeA102
10:00-10:30Coffee Break
10:30-11:30Workshop: Tables, Lists & LinksB201
11:30-12:30Panel: Careers in Web DevelopmentB202

Jump to: Speakers | Marking Rubric | Register

Speakers

NameBioPhoto
Prof. Kiran Trivedi

Expert in Edge AI and Web Technologies. Focus on HTML pedagogyTinyML, and accessibility-first design.

  • Talk: "From HTML to Hardware"
  • Interests: AI, TinyML, Accessibility
Mr. Nimay Kalyani

Engineer and instructor specializing in Human-Computer Interaction and prototyping.

  1. Topic 1: Usability Heuristics
  2. Topic 2: Semantic HTML

Glossary

HTMLHyperText Markup LanguageAlt TextAccessible description for imagesIDUnique identifier for in-page linking

Marking Rubric (HTML-Only Assignment)

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.

CriteriaDetailsMarks
Document structure & semanticsProper use of <header><nav><section><footer>, headings20
Tables (caption, headers, alignment, rowspan/colspan)Schedule + Speakers tables match layout and attributes20
Lists (ul/ol/dl)Correct list nesting and semantics10
Links (internal anchors, relative, external)Working in-page and inter-page links10
Images with alt text (one as a link)Placeholder images + proper alt10
Text formatting & character entitiesUse of <mark><ins><del><sub>/<sup>, & entities (< > & " ' °)10
Preformatted/code & blockquoteCorrect escaping inside <pre>/<code>10
Accessibility & correctnessHeading order, image alts, link clarity5
XHTML disciplineLowercase tags, quoted attribute values, proper nesting, self-closing where needed5

Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.

Register

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

View this question

Lab 1 – HTML Assignment

University of Wollongong – India Campus (GIT City)

Campus Tech Day 2025

Objective

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).

Task Summary

  1. Create a new HTML file

    • Save as uow-india.html

    • Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>

  2. Add a Header Section

    • Use a <table> for layout.

    • Include a logo image and event info (date, campus, title).

    • Insert a horizontal line <hr />.

  3. Create a Navigation Menu

    • Use internal links: About | Schedule | Speakers | Rubric | Register.

  4. About Section

    • Include <h2>About the Event</h2>

    • Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like &lt;, &gt;, &amp;, &deg;.

    • Add a code block using <pre><code>...</code></pre>.

  5. Schedule Section

    • Create a <table> with <caption>Event Schedule</caption>.

    • Use rowspan and colspan.

    • Show different sessions, rooms, and breaks.

  6. 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>.

  7. Marking Rubric Section

    • Create a rubric table (as shown) with headings and marks totaling 100.

  8. Register Section

    • Add one relative link (contact.html) and one external link (UOW website).

    • Mention index.html as the default page.

  9. Footer Section

    • Include copyright (&copy; 2025) and a “Back to top” link.

  10. HTML Good Practices

    • Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).

Submission

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

About the Event

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;

}

Schedule

TimeSessionRoom
08:30-09:00Registration & Welcome
09:00-10:00Keynote: The Future of TinyMLA101
Demo: HTML5 Elements in PracticeA102
10:00-10:30Coffee Break
10:30-11:30Workshop: Tables, Lists & LinksB201
11:30-12:30Panel: Careers in Web DevelopmentB202

Jump to: Speakers | Marking Rubric | Register

Speakers

NameBioPhoto
Prof. Kiran Trivedi

Expert in Edge AI and Web Technologies. Focus on HTML pedagogyTinyML, and accessibility-first design.

  • Talk: "From HTML to Hardware"
  • Interests: AI, TinyML, Accessibility
Mr. Nimay Kalyani

Engineer and instructor specializing in Human-Computer Interaction and prototyping.

  1. Topic 1: Usability Heuristics
  2. Topic 2: Semantic HTML

Glossary

HTMLHyperText Markup LanguageAlt TextAccessible description for imagesIDUnique identifier for in-page linking

Marking Rubric (HTML-Only Assignment)

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.

CriteriaDetailsMarks
Document structure & semanticsProper use of <header><nav><section><footer>, headings20
Tables (caption, headers, alignment, rowspan/colspan)Schedule + Speakers tables match layout and attributes20
Lists (ul/ol/dl)Correct list nesting and semantics10
Links (internal anchors, relative, external)Working in-page and inter-page links10
Images with alt text (one as a link)Placeholder images + proper alt10
Text formatting & character entitiesUse of <mark><ins><del><sub>/<sup>, & entities (< > & " ' °)10
Preformatted/code & blockquoteCorrect escaping inside <pre>/<code>10
Accessibility & correctnessHeading order, image alts, link clarity5
XHTML disciplineLowercase tags, quoted attribute values, proper nesting, self-closing where needed5

Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.

Register

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

View this question
In this exercise, you will follow the steps below to develop a web page. The web page is to display a fictional "World Gurning Competition". When you complete this exercise, the webpage will look like the following:

pix1

Step 1. Create a web page to display Hello World

Use a text editor to create a HTML file. You should save the file as competition.html. Please make sure that the file extension is html

.

In the head element, use the title tag to set the title as Programming Exercise

.

In the body element, use the h1 tag to create a heading with your name and student number, and also display a Hello World

text.

When you complete this step, open the web page you created using a web browser. Your web page should look like the following:

pix1

Step 2. Add a table

Use the table tag to create a table. In the table tag, specify the attribute border

so that the table has a visible border. The table should have 3 rows as follows:

pix

Step 3. Add unordered lists

Use the ul tag to create unordered lists that contain the team members. It should look like the following:

pix

Step 4. Add images

Use the img tag to add images. In the img tag, specify the attribute width

to 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:

pix

Step 5. Add links

Create 2 links to two fictional web pages.

The 1st link address is http://didd.gov and the 2nd link address is http://binn.gov Set the attribute target

to 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:

pix

Step 6. Set text bold and italic.

Make changes to the web page as shown in the picture below.

The texts Thing 1 and Thing 2

become bold.

The texts team leader

become italic.

pix

Step 7. Make text colorful

Change the text Hello World to World Gurning Competition

.

Use the font 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:

pix

Step 8. Add a smiley face using character entities.

Use a character entity to add a smiley face. To find the code for a smiley face, do a Google search on HTML character entity smiley face

.

When you complete this step, it should look like the following:

pix

Step 9. Styling the table.

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:

pix

Step 10. Add more teams.

Use your imagination to add some more teams to the competition!

View this question
In this exercise, you will follow the steps below to develop a web page. The web page is to display a fictional "World Gurning Competition". When you complete this exercise, the webpage will look like the following:

pix1

Step 1. Create a web page to display Hello World

Use a text editor to create a HTML file. You should save the file as competition.html. Please make sure that the file extension is html

.

In the head element, use the title tag to set the title as Programming Exercise

.

In the body element, use the h1 tag to create a heading with your name and student number, and also display a Hello World

text.

When you complete this step, open the web page you created using a web browser. Your web page should look like the following:

pix1

Step 2. Add a table

Use the table tag to create a table. In the table tag, specify the attribute border

so that the table has a visible border. The table should have 3 rows as follows:

pix

Step 3. Add unordered lists

Use the ul tag to create unordered lists that contain the team members. It should look like the following:

pix

Step 4. Add images

Use the img tag to add images. In the img tag, specify the attribute width

to 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:

pix

Step 5. Add links

Create 2 links to two fictional web pages.

The 1st link address is http://didd.gov and the 2nd link address is http://binn.gov Set the attribute target

to 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:

pix

Step 6. Set text bold and italic.

Make changes to the web page as shown in the picture below.

The texts Thing 1 and Thing 2

become bold.

The texts team leader

become italic.

pix

Step 7. Make text colorful

Change the text Hello World to World Gurning Competition

.

Use the font 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:

pix

Step 8. Add a smiley face using character entities.

Use a character entity to add a smiley face. To find the code for a smiley face, do a Google search on HTML character entity smiley face

.

When you complete this step, it should look like the following:

pix

Step 9. Styling the table.

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:

pix

Step 10. Add more teams.

Use your imagination to add some more teams to the competition!

View this question

Lab 1 – HTML Assignment

University of Wollongong – India Campus (GIT City)

Campus Tech Day 2025

Objective

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).

Task Summary

  1. Create a new HTML file

    • Save as uow-india.html

    • Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>

  2. Add a Header Section

    • Use a <table> for layout.

    • Include a logo image and event info (date, campus, title).

    • Insert a horizontal line <hr />.

  3. Create a Navigation Menu

    • Use internal links: About | Schedule | Speakers | Rubric | Register.

  4. About Section

    • Include <h2>About the Event</h2>

    • Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like &lt;, &gt;, &amp;, &deg;.

    • Add a code block using <pre><code>...</code></pre>.

  5. Schedule Section

    • Create a <table> with <caption>Event Schedule</caption>.

    • Use rowspan and colspan.

    • Show different sessions, rooms, and breaks.

  6. 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>.

  7. Marking Rubric Section

    • Create a rubric table (as shown) with headings and marks totaling 100.

  8. Register Section

    • Add one relative link (contact.html) and one external link (UOW website).

    • Mention index.html as the default page.

  9. Footer Section

    • Include copyright (&copy; 2025) and a “Back to top” link.

  10. HTML Good Practices

    • Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).

Submission

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

About the Event

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;

}

Schedule

TimeSessionRoom
08:30-09:00Registration & Welcome
09:00-10:00Keynote: The Future of TinyMLA101
Demo: HTML5 Elements in PracticeA102
10:00-10:30Coffee Break
10:30-11:30Workshop: Tables, Lists & LinksB201
11:30-12:30Panel: Careers in Web DevelopmentB202

Jump to: Speakers | Marking Rubric | Register

Speakers

NameBioPhoto
Prof. Kiran Trivedi

Expert in Edge AI and Web Technologies. Focus on HTML pedagogyTinyML, and accessibility-first design.

  • Talk: "From HTML to Hardware"
  • Interests: AI, TinyML, Accessibility
Mr. Nimay Kalyani

Engineer and instructor specializing in Human-Computer Interaction and prototyping.

  1. Topic 1: Usability Heuristics
  2. Topic 2: Semantic HTML

Glossary

HTMLHyperText Markup LanguageAlt TextAccessible description for imagesIDUnique identifier for in-page linking

Marking Rubric (HTML-Only Assignment)

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.

CriteriaDetailsMarks
Document structure & semanticsProper use of <header><nav><section><footer>, headings20
Tables (caption, headers, alignment, rowspan/colspan)Schedule + Speakers tables match layout and attributes20
Lists (ul/ol/dl)Correct list nesting and semantics10
Links (internal anchors, relative, external)Working in-page and inter-page links10
Images with alt text (one as a link)Placeholder images + proper alt10
Text formatting & character entitiesUse of <mark><ins><del><sub>/<sup>, & entities (< > & " ' °)10
Preformatted/code & blockquoteCorrect escaping inside <pre>/<code>10
Accessibility & correctnessHeading order, image alts, link clarity5
XHTML disciplineLowercase tags, quoted attribute values, proper nesting, self-closing where needed5

Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.

Register

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

View this question

Lab 1 – HTML Assignment

University of Wollongong – India Campus (GIT City)

Campus Tech Day 2025

Objective

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).

Task Summary

  1. Create a new HTML file

    • Save as uow-india.html

    • Add <title>UOW India Campus — GIT City | Campus Tech Day 2025</title>

  2. Add a Header Section

    • Use a <table> for layout.

    • Include a logo image and event info (date, campus, title).

    • Insert a horizontal line <hr />.

  3. Create a Navigation Menu

    • Use internal links: About | Schedule | Speakers | Rubric | Register.

  4. About Section

    • Include <h2>About the Event</h2>

    • Use <blockquote>, <mark>, <sub>, <sup>, and HTML entities like &lt;, &gt;, &amp;, &deg;.

    • Add a code block using <pre><code>...</code></pre>.

  5. Schedule Section

    • Create a <table> with <caption>Event Schedule</caption>.

    • Use rowspan and colspan.

    • Show different sessions, rooms, and breaks.

  6. 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>.

  7. Marking Rubric Section

    • Create a rubric table (as shown) with headings and marks totaling 100.

  8. Register Section

    • Add one relative link (contact.html) and one external link (UOW website).

    • Mention index.html as the default page.

  9. Footer Section

    • Include copyright (&copy; 2025) and a “Back to top” link.

  10. HTML Good Practices

    • Tags in lowercase, attributes in quotes, proper nesting, and self-closing empty elements (<img />, <hr />, <br />).

Submission

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

About the Event

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;

}

Schedule

TimeSessionRoom
08:30-09:00Registration & Welcome
09:00-10:00Keynote: The Future of TinyMLA101
Demo: HTML5 Elements in PracticeA102
10:00-10:30Coffee Break
10:30-11:30Workshop: Tables, Lists & LinksB201
11:30-12:30Panel: Careers in Web DevelopmentB202

Jump to: Speakers | Marking Rubric | Register

Speakers

NameBioPhoto
Prof. Kiran Trivedi

Expert in Edge AI and Web Technologies. Focus on HTML pedagogyTinyML, and accessibility-first design.

  • Talk: "From HTML to Hardware"
  • Interests: AI, TinyML, Accessibility
Mr. Nimay Kalyani

Engineer and instructor specializing in Human-Computer Interaction and prototyping.

  1. Topic 1: Usability Heuristics
  2. Topic 2: Semantic HTML

Glossary

HTMLHyperText Markup LanguageAlt TextAccessible description for imagesIDUnique identifier for in-page linking

Marking Rubric (HTML-Only Assignment)

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.

CriteriaDetailsMarks
Document structure & semanticsProper use of <header><nav><section><footer>, headings20
Tables (caption, headers, alignment, rowspan/colspan)Schedule + Speakers tables match layout and attributes20
Lists (ul/ol/dl)Correct list nesting and semantics10
Links (internal anchors, relative, external)Working in-page and inter-page links10
Images with alt text (one as a link)Placeholder images + proper alt10
Text formatting & character entitiesUse of <mark><ins><del><sub>/<sup>, & entities (< > & " ' °)10
Preformatted/code & blockquoteCorrect escaping inside <pre>/<code>10
Accessibility & correctnessHeading order, image alts, link clarity5
XHTML disciplineLowercase tags, quoted attribute values, proper nesting, self-closing where needed5

Submission tip: If saved as index.html, it becomes the default page when placed in a folder on a server.

Register

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

View this question

Want instant access to all verified answers on moodle.uowplatform.edu.au?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome