View difference between Paste ID: A8xkGVxd and aJjTKyRc
SHOW: | | - or go back to the newest paste.
1
<!DOCTYPE html>
2
  <html>
3
4
    <head>
5
      <meta charset="utf-8">
6
      <title>Ship To It - Company Packing list</title>
7
      <link href="https://fonts.google apis.com/css?family=1x10:100,300,400,700/luckiest+Guy/oxygen:300,400"
8
      rel="style sheet">
9
      <link href="style.css"type="text/css" disabledrel="style sheet">
10
11
      <ul class="navigation">
12-
        <li><img src="htps://s3.amazonaws.com/codecamy-content/courses/web-101/unit-9/htmlcss1-img-logo-Ship To It.png"
12+
        <li><img src="https://picsum.photos/id/237/200/300"
13
        height="20px;"></li>
14
        <li>class="active">Action list</li>
15
        <li>Profiles</li>
16
        <li>Settings</li>
17
      </ul>
18
19
      <div class="search">Search the table</div>
20
    </head>
21
22
     <body>
23
       <table>
24
         <thead>
25
           <tr><!--Row 1-->
26
             <th>Company's Name</th>
27
             <th>Number of Items to Ship</th>
28
             <th>Next Action</th>
29
          </tr>
30
        </thead>
31
      <tbody>
32
        <tr><!--Row 2-->
33
          <td>Adam's Greenworks</td>
34
          <td>14</td>
35
          <td>Package items</td>
36
        </tr>
37
        <tr><!--Row 3-->
38
          <td rowspan="2">David's Burgers</td>
39
          <td>2</td>
40
          <td>Send Invoice</td>
41
        </tr>
42
        <tr><!--Row 4-->
43
          <td>3</td>
44
          <td>Send Invoice</td>
45
        </tr>
46
        <tr><!--Row 5-->
47
          <td>Miss Sally's Sourthern</td>
48
          <td>4</td>
49
          <td>Ship</td>
50
        </tr>
51
        <tr>
52
          <td>Summit Resort Rentals</td>
53
          <td>4</td>
54
          <td>Ship</td>
55
        </tr>
56
        <tr>
57
          <td>Strike Fitness</td>
58
          <td>1</td>
59
          <td>Enter Order</td>
60
        </tr>
61
     </tbody>
62
   </table>
63
 </body>
64
 </html>