Advertisement
Guest User

Untitled

a guest
May 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <meta http-equiv="X-UA-Compatible" content="ie=edge">        
  7.         <title>Nested Lists</title>
  8.     </head>
  9.     <body>
  10.         <h2>Nested List</h2>
  11.         <ol type="I">
  12.             <li>
  13.                 HTML5
  14.                 <ol type ="a">
  15.                     <li>markup language</li>
  16.                     <li>used for structuring and presenting content on the World Wide Web</li>
  17.                 </ol>
  18.             </li>
  19.  
  20.             <li>
  21.                 HTML Versions
  22.                 <ol type="1">
  23.                     <li>Development</li>
  24.                     <li>
  25.                         HTML versions timeline
  26.                         <ul type="circle">
  27.                             <li>HTML draft version timeline</li>
  28.                             <li>XHTML versions</li>
  29.                         </ul>
  30.                     </li>
  31.                     <li>Markup</li>
  32.                 </ol>
  33.             </li>
  34.  
  35.             <li>
  36.                 HTML5 Semantic Tags
  37.                 <ul type ="disc">
  38.                     <li>article</li>
  39.                     <li>aside</li>
  40.                     <li>details</li>
  41.                     <li>figcaption</li>
  42.                     <li>figure</li>
  43.                     <li>footer</li>
  44.                     <li>header</li>
  45.                     <li>main</li>
  46.                     <li>mark</li>
  47.                     <li>nav</li>
  48.                     <li>section</li>
  49.                     <li>summary</li>
  50.                     <li>time</li>
  51.                 </ul>
  52.             </li>
  53.         </ol>
  54.  
  55.     </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement