Untitled

 avatar
unknown
plain_text
2 years ago
3.3 kB
4
Indexable
<!DOCTYPE html>
<html lang="en-GB">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Anxiety Ebook</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Header -->
    <header>
        <nav>
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="about.html">About</a></li>
                <li><a href="table-of-contents.html">Table of Contents</a></li>
                <li><a href="reviews.html">Reviews</a></li>
                <li><a href="purchase.html">Purchase</a></li>
                <li><a href="contact.html">Contact</a></li>
            </ul>
        </nav>
    </header>

    <!-- Main Content -->
    <main>
        <!-- Homepage -->
        <section id="home">
            <h1>Welcome to the Anxiety Ebook</h1>
            <p>Discover effective strategies to overcome anxiety and improve your mental well-being.</p>
            <a href="purchase.html" class="cta-button">Get Your Copy</a>
        </section>

        <!-- About Page -->
        <section id="about">
            <h2>About the Ebook</h2>
            <p>Introduce your ebook and highlight its benefits, target audience, and your expertise on the subject of anxiety.</p>
        </section>

        <!-- Table of Contents Page -->
        <section id="table-of-contents">
            <h2>Table of Contents</h2>
            <ul>
                <li>Chapter 1: Understanding Anxiety</li>
                <li>Chapter 2: Coping Strategies</li>
                <li>Chapter 3: Overcoming Panic Attacks</li>
                <li>...</li>
            </ul>
        </section>

        <!-- Reviews Page -->
        <section id="reviews">
            <h2>Reviews</h2>
            <div class="review">
                <blockquote>"This ebook has been life-changing for me. Highly recommended!"</blockquote>
                <cite>John Doe</cite>
            </div>
            <div class="review">
                <blockquote>"A comprehensive guide that provides practical tips to manage anxiety effectively."</blockquote>
                <cite>Jane Smith</cite>
            </div>
        </section>

        <!-- Purchase/Download Page -->
        <section id="purchase">
            <h2>Get Your Copy</h2>
            <p>Provide information on how visitors can purchase or download your ebook. Include pricing options and formats available.</p>
        </section>

        <!-- Contact Page -->
        <section id="contact">
            <h2>Contact</h2>
            <p>Feel free to reach out with any questions or feedback. Fill out the form below or email us at [email protected]</p>
            <form>
                <!-- Contact form fields go here -->
            </form>
        </section>
    </main>

    <!-- Footer -->
    <footer>
        <p>&copy; 2023 Your Name | All rights reserved.</p>
        <nav>
            <ul>
                <li><a href="privacy-policy.html">Privacy Policy</a></li>
                <li><a href="terms-of-service.html">Terms of Service</a></li>
                <li><a href="blog.html">Blog</a></li>
            </ul>
        </nav>
    </footer>
</body>
</html
Editor is loading...