ekostadinov

Preceding Text - HTML Page

Oct 2nd, 2012
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title>PrecedingText</title>
  5.     <style type="text/css"></style>
  6.     <link type="text/css" rel="stylesheet" href="ListsStyles.css" />
  7. </head>
  8. <body>
  9.     <div id="header">Preceding text</div>
  10.     <br />
  11.     <ol>
  12.         <li>List Item 1
  13.             <ol>
  14.                 <li>Nested Item 1.1</li>
  15.                 <li>Nested Item 1.2</li>
  16.             </ol>
  17.         </li>
  18.         <li>List Item 2
  19.             <ol id="list2">
  20.                 <li>Nested Item 2.1</li>
  21.                 <li>Nested Item 2.2
  22.                     <ol id="nestedList2">
  23.                     <li>Nested Item 2.2.1</li>
  24.                     <li>Nested Item 2.2.2
  25.                         <ul>
  26.                             <li>Nested Item 2.2.2.1</li>
  27.                             <li>Nested Item 2.2.2.2</li>                            
  28.                         </ul>
  29.                     </li>
  30.                     <li>Nested Item 2.2.3</li>
  31.                 </ol>
  32.                 </li>                
  33.                 <li>List Item 2.3</li>                
  34.             </ol>
  35.         </li>
  36.         <li>List Item 3  
  37.             <ul>
  38.                 <li>List Item 3.1</li>
  39.                 <li>List Item 3.2</li>
  40.                 <li>List Item 3.3</li>
  41.             </ul>        
  42.        </li>
  43.  
  44.     </ol>
  45.    
  46.        
  47.  
  48.  
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment