Untitled

 avatar
unknown
plain_text
a year ago
1.4 kB
7
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoanCirrus Landing Page</title>
<style>
    body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
    header { background: #f8f9fa; padding: 10px 20px; text-align: center; }
    .hero { padding: 20px; background: #007bff; color: white; text-align: center; }
    .features, .testimonials { padding: 20px; text-align: center; }
    .footer { background: #343a40; color: white; text-align: center; padding: 10px; }
</style>
</head>
<body>
<header>
    <img src="logo.png" alt="LoanCirrus Logo" width="120">
    <nav>
        <a href="#features">Features</a> | 
        <a href="#testimonials">Testimonials</a>
    </nav>
</header>
<section class="hero">
    <h1>Welcome to LoanCirrus</h1>
    <p>Your journey to easy loan management starts here.</p>
    <button>Get Started</button>
</section>
<section id="features" class="features">
    <h2>Features</h2>
    <p>Streamline your loan management processes with our comprehensive tools.</p>
</section>
<section id="testimonials" class="testimonials">
    <h2>Testimonials</h2>
    <blockquote>"LoanCirrus has transformed our business operations!" - Jane Doe</blockquote>
</section>
<footer class="footer">
    <p>Contact Us: info@loancirrus.com</p>
</footer>
</body>
</html>
Editor is loading...
Leave a Comment