Borne

<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Logo Rotation</title>
    <style>
        .rotating-logo {
            width: 200px; /* Taille du logo */
            height: auto;
            animation: rotation 5s infinite linear;
        }

        @keyframes rotation {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
    </style>
</head>
<body>
    <img src="votre_logo.png" alt="Logo PEB-conseil" class="rotating-logo">
</body>
</html>