Tutorial 1(1)
Tutorial 1(1)
This is the first page of a full Portfolio that you will create and upload on the University Web Server. This Portfolio will help you prepare for the tutorial test that will count
towards your final Coursework mark.
Important Notes:
No space in the filename
If you save your work outside of your h: drive, it will be deleted
The web page you create should resemble Fig. 1 below. To achieve this, follow the steps outlined below:
Use appropriate HTML tags to establish the correct structure for an HTML document. Begin by defining the document as HTML and create the basic structure with a head and
body. Ensure that the text intended for formatting is placed within the body of the document <body></body> tag.
Create the appropriate html tags <html lang="en"> , specify the correct head tags, <meta charset="UTF-8">, and <title></title> . The document title should be "Tutorial 1".
Adjust the text to incorporate your personal details, including your name and student ID, and update the content under the provided headings. Utilize suitable HTML tags to
organize the content with headings and paragraphs, aiming for a layout similar to that depicted in Fig. 1. While it may not be an exact match, strive for a similar appearance.
Consider when you need to use block and inline tags.
Use 3 headings.
Create at least 3 different HTML formating tags to styles the text content.
Use embedded style sheet to further modify the HTML content. Specifically, set the following:
document background colour to background-color: WhiteSmoke; , or specify a colour you prefer
document text to font-family: 'Arial', sans-serif;
text margin to margin: 20px;
h1 padding: 80px 0; height: 2px; to create the wide Turquoise box around the heading, and background-color: DarkTurquoise; , or specify a colour or width of your
choice for the heading box
h3 background colour PaleTurquoise , while the <p></p>, and <address></address> text colour to color: DarkSlateGrey; , or specify a colour you prefer
the first heading, 'Profile Summary,' and the corresponding paragraph should be centered on the page. Utilize a CSS class to target the appropriate heading and paragraph
tag attributes.
the provisional text where in the future you could create links to real projects of your portfolio should appear as color: lightgray; indicating that the links are inactive.
Use CSS style ID to do this
in the project links area to create the empty space between the projects use the following special characters |
Create a ruler acting as a separator at the end of the document
Your email address inside an address element
The last modified date (just as hard coded date), use the <sup></sup> HTML tag to create Superscript text formating.
Important Notes: No space in the filename. If you save your work outside of your h: drive, it will be deleted. So save it on your h: drive and transfer it to your web server account.
Follow the steps below.
Task 4 - Share your design with your peers and comment on other's work.
Let's become co-creators. Share your designs with the rest of the class and take the opportunity to exchange ideas and receive feedback. To do so go to the module Padlet
(https://uowdigital.padlet.org/deconomou/showcase-your-web-design-8e7fz775bab3lxic), upload a screenshoot of your page, and provide the URL of the page from your
Unix account.
Independent study
Extra challenge: Now that you have completed the page, you validated it and you uploaded it to the web server save the file with a different name, like tutorial1B.html and
reorganize it using the following html tags: <header></header>, <footer></footer>, <main></main>, <section></section> .
Integrate <h1> into the <header> :
Move the <h1> element into a <header> tag at the top of the document.
The <header> will represent the introductory section of the page.
Place the last paragraph and email inside the <footer> :
Create a <footer> tag at the bottom of the document.
Move the last paragraph and the email address into the <footer> . This will represent the closing section of the page.
Organize the main content with <main> and <section> :
Wrap all primary content (instructions, steps, etc.) within a <main> tag.
Divide the content into logical sections using <section> tags to improve semantic structure.
Make the <footer> stick to the bottom and span the full width:
Use CSS to position the <footer> at the bottom of the page and ensure it spans the entire width of the browser window. Add a solid background color to distinguish it
visually.