features.php 760 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php include('_inc/_header.php') ?>
  2. <h1>Features</h1>
  3. <div class="row">
  4. <div class="col-lg-12">
  5. <h2>Übersicht</h2>
  6. <table class="table">
  7. <thead>
  8. <tr>
  9. <th scope="col">Beschreibung</th>
  10. <th scope="col">Strasse</th>
  11. <th scope="col">Schiene</th>
  12. <th scope="col">Seefracht</th>
  13. <th scope="col">Luftfracht</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr>
  18. <th scope="row">Zusammenladeverbot</th>
  19. <td>Ja</td>
  20. <td>Ja</td>
  21. <td>Nein</td>
  22. <td>Nein</td>
  23. </tr>
  24. <tr>
  25. <th scope="row">Güter Klasse 7</th>
  26. <td>Nein</td>
  27. <td>Nein</td>
  28. <td>Nein</td>
  29. <td>Nein</td>
  30. </tr>
  31. </tbody>
  32. </table>
  33. </div>
  34. </div>
  35. <?php include('_inc/_footer.php') ?>