This repository has been archived on 2025-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
hugo-mistergeek/test-table.html
2025-08-19 09:54:49 +02:00

39 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table Test</title>
<link rel="stylesheet" href="assets/css/scss/theme.scss">
</head>
<body>
<figure class="wp-block-table">
<table class="has-fixed-layout">
<thead>
<tr>
<th>TECHNOLOGIE</th>
<th>DÉBIT MAXIMUM THÉORIQUE (Mégabit/s)</th>
<th>REMARQUE(S)</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>FTTH (Fibre jusquà labonné)</strong></td>
<td>Jusquà 10 000 Mégabit/s</td>
<td>Débit symétrique, très haute performance.</td>
</tr>
<tr>
<td><strong>FTTLa (Fibre jusquau dernier amplificateur)</strong></td>
<td>Jusquà 1000 Mégabit/s</td>
<td>Débit variable selon la distance au point de raccordement.</td>
</tr>
<tr>
<td><strong>Boucle Locale Radio</strong></td>
<td>Jusquà 100 Mégabit/s</td>
<td>Dépend de la qualité du signal et de lenvironnement.</td>
</tr>
</tbody>
</table>
</figure>
</body>
</html>