web_2024/R1.02/tp/tp1/correction/exercice3.html
2024-11-25 10:03:16 +01:00

41 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="description" content="tp1/ex3">
<meta name="author" content="Denis Monnerat">
<title>Exercice 3</title>
</head>
<body>
<!-- avec la balise <ul> -->
<h1>Sites</h1>
<ul>
<li>WEB iut : <a target="_blank" href="http://www.iut-fbleau.fr">Site web IUT</a></li>
<li>GIT iut : <a target="_blank" href="https://grond.iut-fbleau.fr/gitiut">Service Git de l'IUT</a></li>
</ul>
<!-- avec la balise <ol> -->
<h1>Sites</h1>
<ol>
<li>WEB iut : <a target="_blank" href="http://www.iut-fbleau.fr">Site web IUT</a></li>
<li>GIT iut : <a target="_blank" href="https://grond.iut-fbleau.fr/gitiut">Service Git de l'IUT</a></li>
</ol>
<!-- avec la balise <dl> -->
<h1>Sites</h1>
<dl>
<dt>WEB iut</dt>
<dd><a target="_blank" href="http://www.iut-fbleau.fr">Site web IUT</a></dd>
<dt>GIT iut</dt>
<dd><a target="_blank" href="https://grond.iut-fbleau.fr/gitiut">Service Git de l'IUT</a></dd>
</dl>
</body>
</html>