Créer un site internet
Mathématiques aux lycées et collèges

acceuille

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Accueil</title>
<style>
    .accueil-box {
        display: inline-block;
        padding: 10px 25px;
        border-radius: 8px;
        background-color: #1e90ff;
        box-shadow: 0 3px 6px rgba(0,0,0,0.3);
        font-family: Arial, sans-serif;
        font-size: 16px;
        font-weight: bold;
    }

    .accueil-box a {
        text-decoration: none;
        color: #ffffff;
    }

    .accueil-box:hover {
        background-color: #1565c0;
        transition: 0.3s;
    }
</style>
</head>

<body>

<div class="accueil-box">
    <a href="index.html">Accueil</a>
</div>

</body>
</html>