Example of HTML Ordered List - HTML CSS HTML

HTML CSS examples for HTML:List

Description

Example of HTML Ordered List

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of HTML Ordered List</title> 
 </head> <!--  w ww  .j av  a2 s  .co  m-->
 <body> 
  <h1>HTML Ordered List</h1> 
  <ol> 
   <li>HTML</li> 
   <li>CSS</li> 
   <li>Layout</li> 
  </ol>   
 </body>
</html>

Related Tutorials