0 votes
19 views
in Computer Science by (8.5k points)
The following HTML statements are not written properly. Re-write the correct statements with underlined corrections. The desired purpose of each statement is mentioned under it.

I. <BODY color="red">

<!--Page background color should be red-->

II. <FONT type="arial">

<!--Type of Font should be Arial-->

III. <img source="img_girl.jpg" size="500" height="600">

<!—Image source should be img_girl.jpg, width and

height both should be 500-->

1 Answer

0 votes
by (56.5k points)
 
Best answer
The correct code is

I) <BODY bgcolor = "red" >

II) <FONT face=arial>

III) <img src="img_girl.jpg" width="500"

height="600">
...