<!DOCTYPE html>

<html lang="fr">

<head>

    <meta charset="UTF-8">

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

    <title>A La Conquête d'Angkor</title>

    <style>

        body {

            font-family: "Garamond", "Times New Roman", serif;

            text-align: center;

            margin: 0;

            padding: 0;

            background-color: #f9f9f9;

        }

        .title {

            font-size: 2.5em;

            margin: 20px 0;

            color: #333;

        }

        .subtitle {

            font-size: 1.2em;

            margin: 20px auto;

            max-width: 800px;

            color: #555;

            padding: 0 10px;

        }

        .full-image {

            width: 100%;

            height: auto;

            max-width: 100%;

            object-fit: cover;

        }

        .copyright {

            font-size: 1em;

            margin: 20px 0;

            color: #777;

        }

        @media (max-width: 600px) {

            .title {

                font-size: 1.8em;

            }

            .subtitle {

                font-size: 1em;

            }

        }

    </style>

</head>

<body>

    <div class="title">A La Conquête d'Angkor</div>

    <div class="subtitle">

        Le livre d'histoire qui raconte la création des temples d'Angkor et leur incroyable rétrocession du Siam au Cambodge par la France en 1907

    </div>

    <img src="Mouhot.jpg" alt="Mouhot" class="full-image">

    <div class="copyright">A La Conquête d'Angkor, Copyright 2025</div>

</body>

</html>