Photo AI

6.1 Maak die onvoltoide 6_1Wonder-webblad in 'n webblaaier en ook in 'n teks-/HTML-redigeerder oop (NIE 'n woordverwerkingsprogram soos Word NIE) - NSC Computer Application Technology - Question 6 - 2019 - Paper 1

Question icon

Question 6

6.1-Maak-die-onvoltoide-6_1Wonder-webblad-in-'n-webblaaier-en-ook-in-'n-teks-/HTML-redigeerder-oop-(NIE-'n-woordverwerkingsprogram-soos-Word-NIE)-NSC Computer Application Technology-Question 6-2019-Paper 1.png

6.1 Maak die onvoltoide 6_1Wonder-webblad in 'n webblaaier en ook in 'n teks-/HTML-redigeerder oop (NIE 'n woordverwerkingsprogram soos Word NIE). LET WEL: Vraagnom... show full transcript

Worked Solution & Example Answer:6.1 Maak die onvoltoide 6_1Wonder-webblad in 'n webblaaier en ook in 'n teks-/HTML-redigeerder oop (NIE 'n woordverwerkingsprogram soos Word NIE) - NSC Computer Application Technology - Question 6 - 2019 - Paper 1

Step 1

6.1.1 Stel die agtergrondkleur van die webblad op beige.

96%

114 rated

Answer

In the HTML body tag, set the background color to beige using:

<body bgcolor="beige">

Step 2

6.1.2 Formateer die opskrif 'Agra' soos volg:

99%

104 rated

Answer

Format the heading 'Agra' as follows:

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

Step 3

6.1.3 Voeg die 6City.jpg-prent, wat in jou eksamenleer gids gevind word, ná die opskrif 'Agra' in.

96%

101 rated

Answer

Insert the image after the heading 'Agra' with specified dimensions:

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

Step 4

6.1.4 Verander die lys aan die einde van die webblad om te vertoon soos in die voorbeeld op die vorige bladsy getoon.

98%

120 rated

Answer

To create a numbered list, include the following:

<ol>
    <li>...</li>
    <li>...</li>
    <li>...</li>
</ol>

Step 5

6.2 Maak die onvoltoide 6_2Tourism-webblad in 'n webblaaier en ook in 'n teks-/HTML-redigeerder oop.

97%

117 rated

Answer

To create the tourism webpage, start with:

<html>
<body>
<h1>Foreign Taj Mahal Tourist</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.00</td>
    </tr>
</table>
<a href="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

;