vonko1988

HTML_basics_homework_task2.html

Jan 15th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.97 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <title>Task2</title>
  5.         <link rel="stylesheet" type="text/css" href="task2.css"/>
  6.     </head>
  7.     <body>
  8.         <div id="wrapper">
  9.             <div>Preceeding Text</div>
  10.             <ol>
  11.                 <li>List Item 1
  12.                     <ol id="nested_1">
  13.                         <li>Nested Item 1.1</li>
  14.                         <li>Nested Item 1.2</li>
  15.                     </ol>
  16.                 </li>
  17.                 <li>List Item 2
  18.                     <ol id="nested_2">
  19.                         <li>Nested Item 2.1</li>
  20.                         <li>Nested Item 2.2
  21.                             <ul id="nested_2_2">
  22.                                 <li>Nested Item 2.2.1</li>
  23.                                 <li>Nested Item 2.2.2
  24.                                     <ul id="nested 2_2_2">
  25.                                         <li>Nested Item 2.2.2.1</li>
  26.                                         <li>Nested Item 2.2.2.2</li>
  27.                                     </ul>
  28.                                 </li>
  29.                                 <li>Nested Item 2.2.3</li> 
  30.                             </ul>
  31.                         </li>
  32.                         <li>Nested Item 2.3</li>
  33.                     </ol>
  34.                 </li>
  35.                 <li>List Item 3
  36.                     <ul id="nested_3">
  37.                         <li>List Item 3.1</li>
  38.                         <li>List Item 3.2</li>
  39.                         <li>List Item 3.3</li>
  40.                     </ul>
  41.                 </li>
  42.             </ol>
  43.         </div>
  44.     </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment