45 lines
891 B
HTML
45 lines
891 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Ma fiche personnelle</title>
|
|
</head>
|
|
<body>
|
|
<h1>Ma fiche personnelle</h1>
|
|
<h2>Mes coordonnées</h2>
|
|
<img src="./images/gashy.jpeg" alt="petite gashy sauvage" height="250px">
|
|
<ul>
|
|
<li>Prénom : Coralie</li>
|
|
<li>Nom : Florquin</li>
|
|
<li>Courriel : <a href="mailto:florquin43@gmail.com" target="_blank">florquin43@gmail.com</a></li>
|
|
<li>Date de naissance : 22/01/2001</li>
|
|
</ul>
|
|
<h2>Mes hobbies</h2>
|
|
<ul>
|
|
<li>Sport
|
|
<ol>
|
|
<li>Danse</li>
|
|
<li>Lecture</li>
|
|
</ol>
|
|
</li>
|
|
<li>lecture
|
|
<ol>
|
|
<li>La passe miroir</li>
|
|
<li>Le seigneur des anneaux</li>
|
|
</ol>
|
|
</li>
|
|
<li>Cuisine
|
|
<ol>
|
|
<li>quiche
|
|
<ul>
|
|
<li>oeuf</li>
|
|
<li>crème</li>
|
|
</ul>
|
|
</li>
|
|
</ol>
|
|
</li>
|
|
|
|
</ul>
|
|
</body>
|
|
</html> |