Untitled

mail@pastecode.io avatar
unknown
plain_text
12 days ago
948 B
3
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Us - FitnessHub</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <nav>
            <div class="logo">FitnessHub</div>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="register.html">Register</a></li>
                <li><a href="contact.html">Contact Us</a></li>
            </ul>
        </nav>
    </header>

    <main>
        <section class="about">
            <h2>About Us</h2>
            <p>FitnessHub is dedicated to helping you stay on track with your fitness goals. Join our community of fitness enthusiasts!</p>
        </section>
    </main>

    <footer>
        <p>&copy; 2024 FitnessHub</p>
    </footer>
</body>
</html>
Leave a Comment