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!
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
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!
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
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