Untitled

 avatar
unknown
plain_text
16 days ago
3.8 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Business Writing Solutions Infographic</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f4f4f9;
        }
        .infographic {
            width: 80%;
            max-width: 900px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            color: #333333;
        }
        .infographic h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        .infographic p {
            font-size: 1rem;
            margin: 10px 0;
            color: #555555;
        }
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 20px 0;
        }
        .feature {
            width: 45%;
            margin: 10px 0;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .feature h3 {
            font-size: 1.2rem;
            color: #34495e;
            margin-bottom: 10px;
        }
        .feature p {
            font-size: 0.9rem;
        }
        .cta {
            margin-top: 30px;
            background: #3498db;
            color: #ffffff;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }
        .cta:hover {
            background: #2980b9;
        }
        @media (max-width: 768px) {
            .feature {
                width: 100%;
            }
        }
    </style>
</head>
<body>
    <div class="infographic">
        <h1>Business Writing Solutions by Asia Writing Services</h1>
        <p>Empowering businesses with professional, tailored, and impactful content that drives results.</p>

        <div class="features">
            <div class="feature">
                <h3>SEO-Optimized Content</h3>
                <p>Boost your online presence with content that ranks high on search engines and attracts the right audience.</p>
            </div>

            <div class="feature">
                <h3>Engaging Social Media Content</h3>
                <p>Enhance your brand's visibility with posts that capture attention and drive engagement.</p>
            </div>

            <div class="feature">
                <h3>Persuasive Sales Copy</h3>
                <p>Convert leads into customers with compelling copy tailored to your business goals.</p>
            </div>

            <div class="feature">
                <h3>Comprehensive Reports</h3>
                <p>Deliver clear, concise, and professional reports that leave a lasting impression.</p>
            </div>

            <div class="feature">
                <h3>Custom Business Proposals</h3>
                <p>Win clients with well-structured and persuasive proposals designed to meet their needs.</p>
            </div>

            <div class="feature">
                <h3>Expert Editing & Proofreading</h3>
                <p>Ensure your documents are error-free, polished, and professional.</p>
            </div>
        </div>

        <a href="#contact" class="cta">Get Started Today</a>
    </div>
</body>
</html>
Leave a Comment