Advertisement
makispaiktis

Codecademy - 3rd Course (Tables) - HTML

Aug 13th, 2019 (edited)
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <title>Ship To It - Company Packing List</title>
  5.   <link href="https://fonts.googleapis.com/css?family=Lato: 100,300,400,700|Luckiest+Guy|Oxygen:300,400" rel="stylesheet">
  6.   <link href="style.css" type="text/css" rel="stylesheet">
  7. </head>
  8. <body>
  9.  
  10.   <ul class="navigation">
  11.     <li><img src="https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-9/htmlcss1-img_logo-shiptoit.png" height="20px;"></li>
  12.     <li class="active">Action List</li>
  13.     <li>Profiles</li>
  14.     <li>Settings</li>
  15.   </ul>
  16.  
  17.   <div class="search">Search the table</div>
  18.  
  19.   <table>
  20.     <thead>
  21.       <tr>
  22.         <th>Company Name</th>
  23.         <th>Number of Items to Ship</th>
  24.         <th>Next Action</th>
  25.       </tr>
  26.     </thead>
  27.     <tbody>
  28.       <tr>
  29.         <td>Adam's Greenworks</td>
  30.         <td>14</td>
  31.         <td>Package Items</td>
  32.       </tr>
  33.       <tr>
  34.         <td>Davie's Burgers</td>
  35.         <td>2</td>
  36.         <td>Send Invoice</td>
  37.       </tr>
  38.       <tr>
  39.         <td>Baker's Bike Shop</td>
  40.         <td>3</td>
  41.         <td>Send Invoice</td>
  42.       </tr>
  43.       <tr>
  44.         <td>Miss Sally's Southern</td>
  45.         <td>4</td>
  46.         <td>Ship</td>
  47.       </tr>
  48.       <tr>
  49.         <td>Summit Resort Rentals</td>
  50.         <td>4</td>
  51.         <td>Ship</td>
  52.       </tr>
  53.       <tr>
  54.         <td>Strike Fitness</td>
  55.         <td>1</td>
  56.         <td>Enter Order</td>
  57.       </tr>
  58.     </tbody>
  59.     <tfoot>
  60.       <td>Total</td>
  61.             <td>28</td>
  62.     </tfoot>
  63.   </table>
  64.  
  65.  
  66. </body>
  67. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement