41 lines
1.0 KiB
HTML
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>
|