Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.7 kB
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>The Excel Guy</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>The Excel Guy</h1>
        <p>Expert Financial Consultation Services</p>
    </header>
    <nav>
        <a href="#home">Home</a>
        <a href="#services">Services</a>
        <a href="#booking">Book a Consultation</a>
    </nav>
    <section>
        <article>
            <h3>Financial Planning</h3>
            <p>Develop a comprehensive financial plan tailored to your specific needs and goals, including budgeting, saving, and investing.</p>
            <button onclick="location.href='https://calendly.com/the-excel-guy/financial-planning'">Book a Consultation</button>
        </article>
        <article>
            <h3>Retirement Planning</h3>
            <p>Plan for a secure and comfortable retirement by optimizing your investment strategy, estimating your future expenses, and assessing your retirement income.</p>
            <button onclick="location.href='https://calendly.com/the-excel-guy/retirement-planning'">Book a Consultation</button>
        </article>
        <article>
            <h3>Tax Planning</h3>
            <p>Minimize your tax liabilities and maximize your financial growth through effective tax planning strategies, including deductions, credits, and tax-efficient investments.</p>
            <button onclick="location.href='https://calendly.com/the-excel-guy/tax-planning'">Book a Consultation</button>
        </article>
    </section>
    <footer>
        <p>&copy; 2023 The Excel Guy. All rights reserved.</p>
    </footer>
</body>
</html>