Photo AI

WEB DESIGN (HTML) You are required to complete a web page about the quirks of artists - NSC Computer Application Technology - Question 6 - 2018 - Paper 1

Question icon

Question 6

WEB-DESIGN-(HTML)--You-are-required-to-complete-a-web-page-about-the-quirks-of-artists-NSC Computer Application Technology-Question 6-2018-Paper 1.png

WEB DESIGN (HTML) You are required to complete a web page about the quirks of artists. Open the incomplete 6Quirks web page in a web browser and also in a text/HTM... show full transcript

Worked Solution & Example Answer:WEB DESIGN (HTML) You are required to complete a web page about the quirks of artists - NSC Computer Application Technology - Question 6 - 2018 - Paper 1

Step 1

Font face

96%

114 rated

Answer

To set the font face for the title, use the following HTML code:

<h1 align="center"><font color="IndianRed" face="Vivaldi">Weird Personal Quirks of Historical Artists</font></h1>

Step 2

Horizontal line

99%

104 rated

Answer

Add a horizontal line below the title that is 60% wide and aligned to the right:

<hr width="60%" color="Crimson" align="right">

Step 3

Heading 2 and italics

96%

101 rated

Answer

Introduce the subtitle in a second-level heading format with italics:

<h2><i>Believe it or Not!!!</i></h2>

Step 4

Link to target location

98%

120 rated

Answer

To create a link on the text 'ECCENTRICITY', use this HTML code:

<a href="#Weird">ECCENTRICITY</a>

Step 5

Ordered list

97%

117 rated

Answer

Add an ordered list that specifies the hobbies:

<ol type="A">
  <li>Stealing pens</li>
  <li>Carrying around guns</li>
  <li>Making time capsules</li>
</ol>

Step 6

Table

97%

121 rated

Answer

Create a table to reflect the various artists. Include the appropriate attributes for styling:

<table align="center" bgcolor="Coral" border="4" cellspacing="6">
  <tr>
    <td rowspan="3">Weird Quirks</td>
    <td>...</td>
    <td><img src="6Michelangelo.jpg" height="200" width="200"></td>
    <td>...</td>
  </tr>
  <tr align="center">
    <td>Dali</td>
    <td>Michelangelo</td>
    <td>Picasso</td>
  </tr>
  <tr>
    <td>Stole pens</td>
    <td>Never bathed</td>
    <td>Carried a gun</td>
  </tr>
</table>

Step 7

Closing table tag and bold

96%

114 rated

Answer

To properly close the table tag and emphasize text:

</table>
<p><a name="Weird"></a>SHOCKING BUT TRUE!</p>

Step 8

Closing tags and triangular brackets correct and nesting correct

99%

104 rated

Answer

Ensure all tags are properly closed and nested, especially lists and tables. Check for the final syntax structure.

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

;