 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML reserved Attribute
The HTML reserved attribute define that the list order in ol HTML element should be descending in an HTML document.
Syntax
Following is the syntax −
<ol reserved></ol>
Let us see an example of HTML reserved Attribute −
Example
<!DOCTYPE html> <html> <style>    body {       color: #000;       height: 100vh;       background-color: #8BC6EC;       background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);    } </style> <body> <h1>HTML reversed Demo</h1> <p>List of subjects: </p> <ol reversed> <li>Physics</li> <li>Chemistry</li> <li>Maths</li> <li>Biology</li> <li>Economics</li> </ol> </body> </html> Output

Advertisements
 