Open the incomplete 6_1NatGeo 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 - 2020 - Paper 1
Question 6
Open the incomplete 6_1NatGeo web page in a web browser and also in a text/HTML editor (NOT a word processing program such as Word).
NOTE: Question numbers appear a... show full transcript
Worked Solution & Example Answer:Open the incomplete 6_1NatGeo 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 - 2020 - Paper 1
Step 1
Centre
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 center the text containing 'PYRAMIDS' and the paragraph, use the <center> tag. The <h1> tag wraps the title, and the <p> tag contains the relevant description.
<center>
<h1><font face="Papyrus">PYRAMIDS</font></h1>
<p>The third of Giza Pyramid is considerably smaller than the first two. Built by Pharaoh Menkaure, circa 2490 B.C., it featured a much more complex mortuary temple.</p>
</center>
Step 2
Heading
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 format the heading, ensure it is within an <h1> tag. The font face must be set to 'Papyrus' and the heading 'PYRAMIDS' spelled and capitalized correctly.
<h1><font face="Papyrus">PYRAMIDS</font></h1>
Step 3
Image
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
Inserting the image requires using the <img> tag. Make sure to provide the correct source for the image, which should be '6Group.jpg'.
<img src="6Group.jpg">
Step 4
Hyperlink
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 hyperlink text, use the <a> tag. The link to 'www.crystal.com' should be included under the section heading 'The Future of the Pyramids'.
<a href="www.crystal.com"><h2>The Future of the Pyramids</h2></a>
Step 5
Complete the web page
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
Ensure all tags are properly opened and closed, paying attention to the format and nesting of elements throughout the document. This includes ensuring all <table>, <tr>, <td>, and list tags are used as per the original instructions.