<?php

<!DOCTYPE html>

<html lang="fr">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Bonjour</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            margin-top: 50px;

        }

        button {

            padding: 10px 20px;

            font-size: 16px;

            background-color: #007BFF;

            color: white;

            border: none;

            cursor: pointer;

            border-radius: 5px;

        }

        button:hover {

            background-color: #0056b3;

        }

    </style>

</head>

<body>

    <h1>Bonjour</h1>

    <a href="mailto:sallain@christian-lacroix.com">

        <button>Contact</button>

    </a>

</body>

</html> 

?>