6.1 Open the incomplete 6_1Advert file in a web browser and also in a text/HTML editor (NOT a word processing program such as Word) - NSC Computer Application Technology - Question 6 - 2024 - Paper 1
Question 6
6.1 Open the incomplete 6_1Advert file in a web browser and also in a text/HTML editor (NOT a word processing program such as Word).
Your final web page should look... show full transcript
Worked Solution & Example Answer:6.1 Open the incomplete 6_1Advert file in a web browser and also in a text/HTML editor (NOT a word processing program such as Word) - NSC Computer Application Technology - Question 6 - 2024 - Paper 1
Step 1
6.1.1 Insert HTML code so that the word 'Membership' will display in the web browser tab.
96%
114 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
To insert the HTML code for the title, add the following line within the <head> section of your HTML document:
<title>Membership</title>
Step 2
6.1.2 Change the background colour of the whole web page to 'bisque'.
99%
104 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
You can change the background color by adding the following attribute to the <body> tag:
<body bgcolor="bisque">
Step 3
6.1.3 Modify the code to display a horizontal line between the text '25 December: Closed' and 'Terms of Membership'.
96%
101 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Insert the horizontal line tag as follows:
<hr width="70%">
Step 4
6.1.4 Format the last sentence starting with 'Zoo animals are...' to display as in the screenshot.
98%
120 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Use the <i> tag to italicize the sentence:
<i>Zoo animals are ambassadors for their cousins in the wild - Jack Hanna</i>
Step 5
6.1.5 Create a hyperlink to display the word 'Map', linking to the 6_1_Nav web page.
97%
117 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Add the following anchor tag to create a hyperlink:
<a href="6_1Nav.html">Map</a>
Step 6
6.1.6 Open and view the 6_1Nav web page.
97%
121 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Ensure you open the file 6_1Nav.html in a web browser to view its contents.
Step 7
6.1.7 Edit the tag so that the 6Map image displays. Insert HTML code so that if the image does not display, the text 'Zoo-map' should appear.
96%
114 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
Use the following code to insert the image with an alternative text:
<img src="6Map.gif" alt="Zoo-map">
Step 8
6.2 Modify the HTML code so that your final web page looks like the example below.
99%
104 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!
Answer
For the Membership Fees section, construct the following HTML code:
<head>
<title>Membership Fees</title>
</head>
<body>
<center>
<p><font size="+3">Membership Fees</font></p>
<table border="3">
<tr><td colspan="2">Prices</td></tr>
<tr><td>Adult</td><td>R820</td></tr>
<tr><td>Child: 4 years and older</td><td>R300</td></tr>
<tr><td>Child: 3 years and younger</td><td>FREE</td></tr>
<tr><td>Pensioner</td><td>R500</td></tr>
</table>
</center>
</body>