Center Content each page

This commit is contained in:
Divlo
2019-08-19 01:21:00 +02:00
parent e53dc3bb91
commit 18fd18fec0
7 changed files with 80 additions and 68 deletions

View File

@ -25,39 +25,41 @@
</header>
<!-- Page Content -->
<div class="container">
<div class="row">
<h1>La liste des <span class="important">Fonctions</span> :</h1>
<table class="table table-bordered mt-5">
<thead>
<tr>
<th scope="col">Nom</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="./function-views/weatherRequest.php">Météo</a></td>
<td>Affiche la météo et l'heure local selon la ville.</td>
</tr>
<tr>
<td><a href="./function-views/randomNumber.php">Nombre aléatoire</a></td>
<td>Génère un nombre aléatoire entre un minimum inclus et un maximum inclus.</td>
</tr>
<tr>
<td><a href="./function-views/calculateAge.php">Quelle âge avez-vous ?</a></td>
<td>Calcule l'âge de quelqu'un selon la date de naissance.</td>
</tr>
<tr>
<td><a href="./function-views/convertTemperature.php">Conversion de Température</a></td>
<td>Convertit des Degré Celsius en Degré Fahrenheit et l'inverse aussi.</td>
</tr>
<tr>
<td><a href="./function-views/convertDistance.php">Conversion de Distance</a></td>
<td>Convertit la longueur (distance) avec les unités allant de picomètre au Téramètre.</td>
</tr>
</tbody>
</table>
<div class="jumbotron d-flex align-items-center">
<div class="container">
<div class="row">
<h1>La liste des <span class="important">Fonctions</span> :</h1>
<table class="table table-bordered mt-5">
<thead>
<tr>
<th scope="col">Nom</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="./function-views/weatherRequest.php">Météo</a></td>
<td>Affiche la météo et l'heure local selon la ville.</td>
</tr>
<tr>
<td><a href="./function-views/randomNumber.php">Nombre aléatoire</a></td>
<td>Génère un nombre aléatoire entre un minimum inclus et un maximum inclus.</td>
</tr>
<tr>
<td><a href="./function-views/calculateAge.php">Quelle âge avez-vous ?</a></td>
<td>Calcule l'âge de quelqu'un selon la date de naissance.</td>
</tr>
<tr>
<td><a href="./function-views/convertTemperature.php">Conversion de Température</a></td>
<td>Convertit des Degré Celsius en Degré Fahrenheit et l'inverse aussi.</td>
</tr>
<tr>
<td><a href="./function-views/convertDistance.php">Conversion de Distance</a></td>
<td>Convertit la longueur (distance) avec les unités allant de picomètre au Téramètre.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>