Graphic Design

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offset Printing Services</title>

<style>
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

header {
    background: linear-gradient(90deg, #ff6600, #ff3300);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 40px;
}

header p {
    font-size: 18px;
    margin-top: 10px;
}

section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    flex: 1 1 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card h3 {
    margin-top: 15px;
}

.about {
    text-align: center;
    line-height: 1.7;
}

.cta {
    background: #ff6600;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta button {
    padding: 12px 25px;
    border: none;
    background: white;
    color: #ff6600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}
</style>

</head>

<body>

<header>
    <h1>Premium Offset Printing Services</h1>
    <p>High-Quality Printing That Elevates Your Brand Identity</p>
</header>

<section class="about">
    <h2>About Offset Printing</h2>
    <p>
        Offset printing is one of the most reliable and cost-effective printing methods for bulk production.
        It delivers sharp, clean, and consistent results, making it ideal for business materials like brochures,
        catalogs, visiting cards, posters, and more.
    </p>
</section>

<section>
    <h2>Our Printing Services</h2>
    <div class="services">

        <div class="card">
            <img src="https://via.placeholder.com/400x250" alt="Brochure Printing">
            <h3>Brochure Printing</h3>
            <p>Professional brochures with vibrant colors and premium finish for marketing success.</p>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/400x250" alt="Business Cards">
            <h3>Business Cards</h3>
            <p>High-quality visiting cards that leave a strong and lasting impression.</p>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/400x250" alt="Poster Printing">
            <h3>Poster Printing</h3>
            <p>Eye-catching posters designed for maximum visibility and brand promotion.</p>
        </div>

        <div class="card">
            <img src="https://via.placeholder.com/400x250" alt="Catalog Printing">
            <h3>Catalog Printing</h3>
            <p>Detailed and elegant catalogs perfect for showcasing your products.</p>
        </div>

    </div>
</section>

<section>
    <h2>Why Choose Us?</h2>
    <div class="services">

        <div class="card">
            <h3>✔ Premium Quality</h3>
            <p>We use advanced offset machines for high-resolution and consistent output.</p>
        </div>

        <div class="card">
            <h3>✔ Fast Delivery</h3>
            <p>Quick turnaround time without compromising on quality.</p>
        </div>

        <div class="card">
            <h3>✔ Affordable Pricing</h3>
            <p>Best pricing for bulk printing with maximum value.</p>
        </div>

    </div>
</section>

<section class="cta">
    <h2>Ready to Print Your Ideas?</h2>
    <p>Contact us today for professional offset printing solutions!</p>
    <button>Get Quote</button>
</section>

<footer>
    <p>© 2026 Your Printing Company | All Rights Reserved</p>
</footer>

</body>
</html>
Scroll to Top