InterviewSolution
Saved Bookmarks
| 1. |
Write HTML code to display an ordered list (with uppercase roman numbers) listing any three subjects being taught in your school. The web page should have a red background and the title of the page should be ‘My Subjects’ |
|
Answer» <HTML> <HEAD> <TITLE> My Subjects</TITLE> </HEAD> <BODY bgcolor=”red”> <OL type=”I”> <LI> Science</LI> <LI> Maths</LI> <LI> Computers</LI> </OL> </BODY> </HTML> |
|