| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php include('_inc/_header.php') ?>
-
- <h1>Features</h1>
- <div class="row">
- <div class="col-lg-12">
- <h2>Übersicht</h2>
- <table class="table">
- <thead>
- <tr>
- <th scope="col">Beschreibung</th>
- <th scope="col">Strasse</th>
- <th scope="col">Schiene</th>
- <th scope="col">Seefracht</th>
- <th scope="col">Luftfracht</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">Zusammenladeverbot</th>
- <td>Ja</td>
- <td>Ja</td>
- <td>Nein</td>
- <td>Nein</td>
- </tr>
- <tr>
- <th scope="row">Güter Klasse 7</th>
- <td>Nein</td>
- <td>Nein</td>
- <td>Nein</td>
- <td>Nein</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <?php include('_inc/_footer.php') ?>
|