Mathématiques aux lycées et collèges

Sujet de BEPC Cote d'Ivoire

<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8">
  <title>Page grise avec lien</title>
  <style>
    body {
      background-color: gray; /* fond gris */
      padding: 20px;
      font-size: 20px;
    }
    a {
      color: white; /* couleur du lien */
      text-decoration: none;
    }
  </style>
</head>
<body>

  <a href="bepc.html">Accéder à la page BEPC</a>

</body>
</html>