BRE03

Correction de l’exercice 1 sur l’affichage

<?php 
    $title = "Le titre de ma page";
?>
<!doctype html>
<html lang="fr">
    <head>
        <meta charset="utf-8" />
        <title>Exercice 1</title>
    </head>
    <body>
        <h1>
            <?= $title ?>
        </h1>
    </body>
</html>