39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!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’à l’abonné)</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 jusqu’au 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 l’environnement.</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</figure>
|
||
</body>
|
||
</html> |