Untitled

 avatar
unknown
plain_text
2 years ago
1.3 kB
5
Indexable
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Landing Page</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 40px;
        }

        h1 {
            font-size: 36px;
            color: #333;
        }

        p {
            font-size: 18px;
            color: #666;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #3498db;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 20px;
        }

        .cta-button:hover {
            background-color: #2587c9;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Welcome to Our Awesome Product</h1>
        <p>We provide solutions that solve your problems.</p>
        <a href="#your-link-here" class="cta-button">Get Started</a>
    </div>
</body>
</html>
Editor is loading...