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

Answered By
1 Like
Related Questions
Create a nest list as follows using both ordered and unordered list tags :
- Operating System
- Disk Operating System
- Windows
- Unix
- Linux
- MS - Office
- Word
- Excel
- PowerPoint
- Access
- OpenOffice.org
- Writer
- Calc
- Impress
- Base
- Accessories
- Paint
- Calculator
- Note Pad
- Word Pad
Apply different font styles on these lists.
Fill in the blanks:
(i) …………… tag is used to insert a line break on a web page.
(ii) The tag …………… is used to create subscripts and …………… tag is used to create superscripts on a web page.
The document structure elements of HTML page is/are:
- HTML
- BODY
- HEAD
- All the above