Exercice

Question

Rendez vous sur la page : https://grisebouille.net/hexadecimal-et-boby-lapointe afin de récupérer l'image ci-après (clic droit, enregistrer l'image) :

tsq_017_hexadecimal_et_boby_lapointe.png.

Créez une page HTML contenant cette image, en oubliant pas d'intégrer un titre et de créditer l'auteur Gee et de rappeler la licence Creative Commons BY SA.

Solution

1
<!DOCTYPE html>
2
<html lang="fr">
3
    <head>
4
        <title>Une BD de Gee</title>
5
        <meta charset="utf-8">
6
    </head>
7
    <body>
8
        <h1>Hexadécimal et Boby Lapointe</h1>        
9
        <img src="tsq_017_hexadecimal_et_boby_lapointe.png" title="Unlearned"/>
10
        <p>par Gee, licence CC BY-SA</p>
11
    </body>
12
</html>