The document provides instructions to fix errors in a code sample for a basic website about fruits, including changing the background color, centering the title, modifying font size/color/style, resizing images, and adding hyperlinks. The code sample displays the title "fruits" in large white text on a dark blue background, lists common fruits like banana and apple with an image of a banana, and needs corrections to formatting and functionality.
1 of 2
Download to read offline
More Related Content
Developing html skills 1
1. Developing web design skills
Copy this code into notepad then we will try to fix
the following errors-
-Change background colour
-Make the website title centered
-Change font size,colour and style
-Add more pictures and edit size of pictures
-learn to add a few hyperlinks
2. <html>
<head> <title> fruits </title>
<body bgcolor="#143576">
<font type="verdana" size="67" font color="white">
<p> types of fruit </p>
<ul>
<li> banana <br>
<img src=/slideshow/developing-html-skills-1/36156428/"http:/s3.amazonaws.com/snd-store/5402000/original.jpg"
height="50" width="100" >
<li> apple
<li> mango
</ul> </center>
</body>
</html>