Untitled

mail@pastecode.io avatar
unknown
plain_text
13 days ago
927 B
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cape Town Tours</title>
    <link rel="stylesheet" href="styles.css">
    <script defer src="scripts.js"></script>
</head>
<body>
    <header class="header">
        <h1 class="logo">Cape Town Explorer</h1>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#tours">Tours</a></li>
                <li><a href="#about">About Us</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section id="home" class="section home">
        <h2>Welcome to Cape Town Explorer</h2>
        <p>Your best choice for unforgettable tours around Cape Town!</p>
        <a href="#tours" class="cta-btn">Explore Our Tours</a>
    </section>

    <section id="tours" class
Leave a Comment