Photo AI

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 icon

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)-NSC Computer Application Technology-Question 6-2019-Paper 1.png

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

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

Answer

For formatting the heading 'Agra', use the following code:

<h1><font size="50" face="Century">Agra</font></h1>

Step 3

6.1.3 Insert the 6City.jpg picture, found in your examination folder, after the heading 'Agra'.

96%

101 rated

Answer

To insert the picture and set its dimensions, include the following code below the heading 'Agra':

<br>
<img src="6City.jpg" height="350" width="600"/>

Step 4

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

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

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>

Join the NSC students using SimpleStudy...

97% of Students

Report Improved Results

98% of Students

Recommend to friends

100,000+

Students Supported

1 Million+

Questions answered

;