Menu
Coddy logo textTech

Section Contact

Fait partie de la section Styling with CSS du Journey HTML de Coddy — leçon 70 sur 76.

challenge icon

Défi

Facile

Dans cette tâche, vous allez positionner le tableau contenant les informations de contact au centre de la section .contact

Utilisez des techniques de mise en page pour vous assurer que le tableau est bien placé et visuellement attrayant. Suivez les étapes ci-dessous :

  1. Écrivez une règle CSS qui cible l'élément <section> avec la classe .contact.
  2. Définissez son display sur flex pour permettre le positionnement flexible des éléments enfants.
  3. Utilisez flex-direction: column pour empiler les éléments verticalement.
  4. Appliquez align-items: center pour centrer le contenu horizontalement.
  5. Définissez un min-height de 30vh pour garantir suffisamment d'espace pour le contenu.

Essayez vous-même

<html>
    <head>
        <title>Swim with Whales in Tonga</title>
        <link rel="stylesheet" href="styles.css">  
    </head>
<body>
    <nav class="menu">
        <a href="#about">About</a>
        <a href="#experience">Experience</a>
        <a href="#contact">Contact</a>
    </nav>    
    <header class="welcome">
        <h1>Swim with Whales in Tonga</h1>
        <p>Experience the magic of swimming alongside majestic humpback whales.</p>
    </header>    
    <section class="about">
        <h2>About Tonga</h2>
        <img src="https://upload.wikimedia.org/wikipedia/commons/8/88/Hawaiian_Islands_Humpback_Whale_National_Marine_Sanctuary_breaching_2018.png">
        <p>Tonga is a stunning Polynesian archipelago in the South Pacific, famous for its crystal-clear waters and vibrant marine life. From July to October, humpback whales migrate here to breed, offering a rare chance to swim with these gentle giants. Beyond whale encounters, Tonga boasts pristine beaches, lush tropical landscapes, and a rich cultural heritage. Visitors can explore traditional villages, experience authentic Tongan hospitality, and enjoy activities like snorkeling, diving, and sailing. Whether you're seeking adventure or relaxation, Tonga provides an unforgettable escape into nature’s beauty.</p>
    </section>      
    <section class="contact">
        <h2>Plan Your Adventure</h2>
        <table>
            <tr>
                <td>Phone Number</td>
                <td>+676 123 4567</td>
            </tr>
            <tr>
                <td>Email</td>
                <td>info@tongawhales.com</td>
            </tr>
        </table>
    </section>
</body>
</html>

Toutes les leçons de Styling with CSS