Untitled

 avatar
unknown
plain_text
2 years ago
2.6 kB
4
Indexable
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Ocean Explorer</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #87CEEB; /* Light Blue color for the ocean background */
        }

        header {
            background-color: #4682B4; /* Steel Blue color for the header */
            padding: 10px;
            text-align: center;
            color: white;
        }

        nav {
            background-color: #333;
            overflow: hidden;
        }

        nav a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        nav a:hover {
            background-color: #ddd;
            color: black;
        }

        section {
            padding: 20px;
            margin: 20px;
            background-color: white;
            border-radius: 8px;
        }

        footer {
            background-color: #4682B4;
            padding: 10px;
            text-align: center;
            color: white;
        }
    </style>
</head>

<body>
    <header>
        <h1>Ocean Explorer</h1>
    </header>

    <nav>
        <a href="#home">Home</a>
        <a href="#marine-life">Marine Life</a>
        <a href="#oceanography">Oceanography</a>
        <a href="#conservation">Conservation</a>
        <a href="#contact">Contact</a>
    </nav>

    <section id="home">
        <h2>Welcome to Ocean Explorer</h2>
        <p>Explore the wonders of the ocean and learn about its diverse marine life, oceanography, and conservation efforts.</p>
    </section>

    <section id="marine-life">
        <h2>Marine Life</h2>
        <p>Discover the fascinating creatures that inhabit the depths of the ocean.</p>
        <!-- Add more content about marine life -->
    </section>

    <section id="oceanography">
        <h2>Oceanography</h2>
        <p>Learn about the science of oceanography and the study of the world's oceans.</p>
        <!-- Add more content about oceanography -->
    </section>

    <section id="conservation">
        <h2>Conservation</h2>
        <p>Find out about efforts to protect and conserve our oceans for future generations.</p>
        <!-- Add more content about conservation -->
    </section>

    <footer>
        <p>&copy; 2023 Ocean Explorer. All rights reserved.</p>
    </footer>
</body>

</html>
Editor is loading...
Leave a Comment