Photo AI

You need to complete a web page about rhodium - NSC Computer Application Technology - Question 6 - 2016 - Paper 1

Question icon

Question 6

You-need-to-complete-a-web-page-about-rhodium-NSC Computer Application Technology-Question 6-2016-Paper 1.png

You need to complete a web page about rhodium. Open the incomplete 6Rhodium web page in a web browser and also in a text/HTML editor (NOT a word processing program ... show full transcript

Worked Solution & Example Answer:You need to complete a web page about rhodium - NSC Computer Application Technology - Question 6 - 2016 - Paper 1

Step 1

6.1 Format the text 'Rhodium Investment: The Rarest of Precious Metals'

96%

114 rated

Answer

To format the text, wrap it in appropriate HTML tags as follows:

<h1 align="center"><font color="red">Rhodium Investment: The Rarest of Precious Metals</font></h1>

Step 2

6.2 Add a horizontal line with a 90% width below the heading 'Rhodium Investment: The Rarest of Precious Metals'

99%

104 rated

Answer

To add a horizontal line, use the following code:

<hr width="90%"/>

Step 3

6.3 Insert the image 6Rh as a background for the (entire) BODY of the web page

96%

101 rated

Answer

To set the background image, include the following within the body tag:

<body background="6Rh.jpg">

Step 4

6.4 Add the following items in a list with square bullets AND leave line breaks between the two list items

98%

120 rated

Answer

Create a bulleted list as follows:

<ul type="square">
    <li>Diesel catalytic converters</li>
    <br/>
    <li>Non-diesel catalytic converters</li>
</ul>

Step 5

6.5 Set the height to 100 and the width to 200 for the 6RMine image and set the border to 5

97%

117 rated

Answer

Insert the image with specified dimensions and border using:

<img src="6RMine.jpg" height="100" width="200" border="5"/>

Step 6

6.6 Display the text 'South Africa' in bold and italics

97%

121 rated

Answer

To format the text, use the following HTML tags:

<b><i>South Africa</i></b>

Step 7

6.7 Modify the HTML code to create a link on the text 'www.ResourceInvestor.com'

96%

114 rated

Answer

To create the link, use the following code:

<a href="http://www.ResourceInvestor.com">www.ResourceInvestor.com</a>

Step 8

6.8 Modify the table cell spacing to 10 and place 'Rhodium Prices' in the first row

99%

104 rated

Answer

Modify the table structure as follows:

<table align="center" border="3" cellspacing="10">
    <tr>
        <td colspan="3">Rhodium Prices</td>
    </tr>
    <tr>
        <td>Metal</td>
        <td>Year</td>
        <td>Price</td>
    </tr>
    <tr>
        <td>Rhodium</td>
        <td>2014</td>
        <td>R1 235</td>
    </tr>
</table>

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

;