6.1 Open the incomplete 6_1Wonder web page 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 - 2019 - Paper 1
Question 6
6.1 Open the incomplete 6_1Wonder web page in a web browser and also in a text/HTML editor (NOT a word processing program such as Word).
NOTE: Question numbers appe... show full transcript
Worked Solution & Example Answer:6.1 Open the incomplete 6_1Wonder web page 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 - 2019 - Paper 1
Step 1
6.1.1 Set the background colour of the web page to beige.
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 set the background color of the web page to beige, add the following line within the <body> tag:
<body bgcolor="beige">
Step 2
6.1.2 Format the heading 'Agra' as follows:
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 formatting the heading 'Agra', use the following code:
6.1.4 Change the list at the end of the web page to display as shown in the example on the previous page.
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 an ordered list to display the attractions as follows:
<ol>
<li>The Taj Mahal - the tomb of Shah Jahan and Mumtaz Mahal, a World Heritage Site.</li>
<li>The Red Fort - a very nice stronghold of Agra.</li>
<li>Le Sikandra - This is the tomb of Akbar, it is a mausoleum in red sandstone.</li>
<li>Fatehpur Sikri - This ancient imperial city is 37 km west of Agra.</li>
</ol>
Step 5
6.2 Open the incomplete 6_2Tourism web page in a web browser and also in a text/HTML editor (NOT a word processing program such as Word).
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
To complete the 6_2Tourism page, use the following layout:
<html>
<body>
<h1>Foreign Visitors to the Taj Mahal</h1>
<table border="3">
<tr>
<th colspan="3">2018 Figures</th>
</tr>
<tr>
<td>Year</td>
<td>Arrival</td>
<td>%</td>
</tr>
<tr>
<td>2018</td>
<td>10.04</td>
<td>14.0</td>
</tr>
</table>
<a href="http://www.tajmahal.in">Click for more information: www.tajmahal.in</a>
</body>
</html>