"Untitled"
Bootstrap 4.1.1 Snippet by Manojkumar001

<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Jansons Carpets Card</title> <style> body{ font-family: Arial, sans-serif; background:#f4f4f4; display:flex; justify-content:center; align-items:center; height:100vh; margin:0; } .card{ background:#fff; width:380px; padding:25px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); text-align:center; } .card h2{ color:#222; font-size:24px; margin-bottom:15px; line-height:1.4; } .card p{ color:#555; font-size:15px; line-height:1.7; margin-bottom:25px; } .red-btn{ display:inline-block; background:#d60000; color:#fff; text-decoration:none; padding:12px 22px; border-radius:6px; font-size:15px; font-weight:bold; transition:0.3s ease; } .red-btn:hover{ background:#a80000; } </style> </head> <body> <div class="card"> <h2>Jansons Carpets Offers Best Wool Carpets in Delhi for Warm and Elegant Interiors</h2> <p> Jansons Carpets presents the best wool carpets in Delhi crafted from premium natural fibers known for softness, durability, and comfort. These carpets add cozy warmth, refined texture, and timeless style to interiors, making them ideal for modern and traditional homes. </p> <a href="https://jansonscarpets.com/wool-carpets.html" class="red-btn" target="_blank"> Explore Wool Carpets </a> </div> </body> </html>

Questions / Comments: