What's the HTML code for?

Whats the HTML code for roman numerals for a web page?

  • Answer:

    To write a Roman Numeral you simply type in the letters in the text (4) IV. if you want an ordered list using Roman Numerals use the following list tags: A basic list using bullets (small black circles) starts with the tag <ul> and each item listed with the tags <li>item one </li> <li>item two </li> </ul> (end list) will result in Item one item two For a Ordered numbered list instead of a bullet list use <ol> (ordered list) instead of <ul> (unordered list) to start. for example <ol> <li>item one</li> <li>item two</li> </ol> This will result in: item one item two For a Roman Numeral list you have to use the Type= attribute with the value "I" (capital i) inside the list start tag as follows, <li type="I">This will give you Roman Numerals</li> For example: <ol> <li type="I">First Roman Numeral Item I </li> <li type="I">Second Roman Numeral Item II </li> <li type="I">Third Roman Numeral&nbsp; Item III </li> </ol> The capital "I" will give you the Roman Numerals in capitals. If you use a lower case "i" the Roman Numerals will all be in lower case.

community wiki at wiki.answers.com Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.