Demonstrate Ordered and Unordered List ( HTML Practical ) - Exam Helper
Ordered and Unordered List,Demonstrate Ordered and Unordered List,Demonstrate Ordered and Unordered List ( Practical ),Exam Helepr,Computer Science,
|
Ordered and Unordered List ( Practical ) |
| <html>
|
| <head>
|
| <title> Demonstrate Ordered and unordered list </title>
|
| </head>
|
| <body>
|
| <h2>Ordered list</h2>
|
|
|
| <ol>
|
| <li>Nagpur</li>
|
| <li>Bramhapuri</li>
|
| <li>Chandrapur</li>
|
| <li>Gadchiroli</li>
|
| <li>Wadsa</li>
|
| <li>Gondia</li>
|
| </ol>
|
|
|
| <h2>Unordered list</h2>
|
|
|
| <ul>
|
| <li>Nagpur</li>
|
| <li>Bramhapuri</li>
|
| <li>Chandrapur</li>
|
| <li>Gadchiroli</li>
|
| <li>Wadsa</li>
|
| <li>Gondia</li>
|
| </ul>
|
|
|
| </body>
|
| </html>
Read Also: Demonstrate the use of table (HTML Practical ) |
Output:
Demonstrate Ordered and unordered list
Ordered list
- Nagpur
- Bramhapuri
- Chandrapur
- Gadchiroli
- Wadsa
- Gondia
Unordered list
- Nagpur
- Bramhapuri
- Chandrapur
- Gadchiroli
- Wadsa
- Gondia