Computer Science, asked by sghawri2845, 1 year ago

Write HTML code to display ordered lists.

Answers

Answered by Anonymous
5

Answer:

Attribute TYPE: (1 | a | A | i | I )

Changes the style of the list.

TYPE = “1” (Arabic Numbers)

TYPE = “a” (Lowercase alphanumeric)

TYPE = “A” (Uppercase alphanumeric)

TYPE = “i” (Lowercase Roman numbers)

TYPE = .1″ (Uppercase Roman numbers)

Example

<HTML>

<HEAD>

<TITLE> Javatechig | List Example </TITLE>

</HEAD>

<BODY>

<H1> Mobile Operating System</h1>

<OL>

<LI> Android

<LI> Blckberry

<LI> iPhone

<LI> Windows Phone

</OL>

<H1>Mobile Manufacturers</h1>

<OL TYPE = "A">

<LI> Samsung

<LI> HTC

<LI> Micromax

<LI> Apple

</OL>

</BODY>

</HTML>

I hope you understood!

Plz Follow me to get solutions immediately!

Mark as Brainlist!

Similar questions