KnowledgeBoat Logo
|

Computer Applications

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'.

HTML Intro

4 Likes

Answer

<HTML>
<HEAD>
<TITLE>My Subjects</TITLE>
</HEAD>
<BODY BGCOLOR = "RED">
<OL TYPE = "I">
<LI>English</LI>
<LI>Mathematics</LI>
<LI>Computer Applications</LI>
</OL>
</BODY>
</HTML>
Output
Write HTML code to display an ordered list (with uppercase roman numbers) listing any three subjects being taught in your school. Practical Assessment. Basic HTML ELements, Computer Applications Code 165 Sumita Arora Solutions CBSE Class 10.

Answered By

1 Like


Related Questions