mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-01-18 16:47:24 +01:00
87 lines
2.9 KiB
HTML
87 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chat</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Marko+One&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Chat en ligne</h1>
|
|
<nav>
|
|
<ul>
|
|
<li class="active"><a href="accueil.html">Accueil</a></li>
|
|
<li><a href="chat.html">Chat</a></li>
|
|
<li><a href="https://isen-nantes.fr" target="_blank"><img class="logo" src="images/ISEN_Logo.png" alt="logo isen"></a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<section>
|
|
<div class="table">
|
|
<table border="1" cellpadding="6" cellspacing="0" width="100%">
|
|
<caption class="page-title">Bienvenue dans le Chat en ligne des étudiants de l'ISEN</caption>
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2" bgcolor="#e0e0e0">Jour</th>
|
|
<th rowspan="2" bgcolor="#e0e0e0" colspan="2">Horaires</th>
|
|
<th rowspan="2" bgcolor="#e0e0e0">Évènement</th>
|
|
<th colspan="4" bgcolor="#e0e0e0">Sites</th>
|
|
</tr>
|
|
<tr>
|
|
<th bgcolor="#f8f8f8">Brest</th>
|
|
<th bgcolor="#f8f8f8">Caen</th>
|
|
<th bgcolor="#f8f8f8">Nantes</th>
|
|
<th bgcolor="#f8f8f8">Rennes</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Lundi</td>
|
|
<td>17h</td>
|
|
<td>19h</td>
|
|
<td>Réunion BDE</td>
|
|
<td colspan="4">X</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Mardi</td>
|
|
<td>10h</td>
|
|
<td>12h</td>
|
|
<td>Réunion Club Robotique</td>
|
|
<td>X</td>
|
|
<td>X</td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Mercredi</td>
|
|
<td>11h</td>
|
|
<td>13h</td>
|
|
<td>Réunion Club IA</td>
|
|
<td></td>
|
|
<td>X</td>
|
|
<td>X</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Jeudi</td>
|
|
<td>10h</td>
|
|
<td>12h</td>
|
|
<td>Réunion BDS</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>X</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
<footer>
|
|
<p>All content copyright ©A3</p>
|
|
<p><a href="http://isen-nantes.fr" target="_blank">Lien vers la page du Programmeur</a></p>
|
|
</footer>
|
|
</body>
|
|
</html> |