Vraag 6: WEBONTWERP (HTML)
Jy word gevra om 'n inligtingspamflet te help ontwerp om te help om olifante te red - NSC Computer Application Technology - Question 6 - 2016 - Paper 1
Question 6
Vraag 6: WEBONTWERP (HTML)
Jy word gevra om 'n inligtingspamflet te help ontwerp om te help om olifante te red.
Maak die onvolledige 6Elephant_Olifant-webblad in '... show full transcript
Worked Solution & Example Answer:Vraag 6: WEBONTWERP (HTML)
Jy word gevra om 'n inligtingspamflet te help ontwerp om te help om olifante te red - NSC Computer Application Technology - Question 6 - 2016 - Paper 1
Step 1
6.1 Korregereer die HTML-merkers om die teks 'Save the Elephant' in die webblaaier-oortjie ('browser tab') te vertoon.
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 correctly display the title in the browser tab, add the following HTML tag:
<title>Save the Elephant</title>
Step 2
6.2 Voeg HTML-merkers by om die 6Eleph_Olif.jpg-prent wat in die eksamenleergids gevind word, te vertoon.
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
To insert the image, use the following HTML code and ensure it is aligned to the left:
<img src='6Eleph_Olif.jpg' align='left'>
Step 3
6.3 Formateer die teks 'SAVE THE ELEPHANT' met die font 'Elephant'.
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
To format the text with the specified font, use:
<font face='Elephant'>SAVE THE ELEPHANT</font>
Step 4
6.4 Vergroot die fontgrootte van die teks 'FROM THE KIDS ANIMAL PROTECTION' met 1.
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
To increase the font size, write:
<font size='2' face='Georgia'>FROM THE KIDS ANIMAL PROTECTION</font>
Step 5
6.5 Voeg 'n horizontale lyn met die volgende kenmerke onder die liggaammerker ('body tag') in, soos in die leer getoon: Stel die lynkleur op 'n geel kleur. Stel die lyn grootte op 4.
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 add a horizontal line as specified, use:
<hr color='yellow' size='4' />
Step 6
6.6 Voeg 'n ry met die teks 'Asian Elephant' by die tabel.
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
To add a row in the table for 'Asian Elephant', use:
<tr><td>Asian Elephant</td></tr>
Step 7
6.7 Formateer die teks 'Physical description' met 'n Heading 2-styl.
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 format the text as a heading 2, write:
<h2>Physical description</h2>
Step 8
6.8 Vertoon die teks 'Proboscidea' in skuinsdruk/kursief.
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
To display the text in italics, use:
<i>Proboscidea</i>
Step 9
6.9 Voeg sykopos nommering op die teks onder die opskrif 'Threats to elephants' in: Poaching is still a problem. Habitat loss is a concern.
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
To add the numbered list under 'Threats to elephants', write:
<ol type='i'>
<li>Poaching is still a problem.</li>
<li>Habitat loss is a concern.</li>
</ol>
Step 10
6.10 Voeg 'n skakel ('link') op die woord 'Save the Elephant' wat na die dokument 6Save_Red.docx in die eksameneergids verwys.
98%
120 rated
Only available for registered users.
Sign up now to view full answer, or log in if you already have an account!