"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>Carpet Guide Card</title> <style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background: #f4f7f8; font-family: Arial, sans-serif; } .card { background: #ffffff; padding: 30px; max-width: 500px; text-align: center; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); } h2 { margin-bottom: 15px; color: #222; } p { color: #555; line-height: 1.6; margin-bottom: 25px; } .btn { display: inline-block; padding: 12px 24px; background: #008080; color: #ffffff; text-decoration: none; border-radius: 30px; font-weight: bold; border: 2px solid #008080; transition: all 0.35s ease; box-shadow: 0 4px 12px rgba(0,128,128,0.3); } .btn:hover { background: #ffffff; color: #008080; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 20px rgba(0,128,128,0.4); } </style> </head> <body> <div class="card"> <h2>Jansons Carpets Guides You to Calculate Carpet Area for Perfect Carpet Selection</h2> <p> Jansons Carpets explains how to calculate carpet area accurately by measuring room dimensions and understanding usable space. This helps in choosing the right carpet size that fits perfectly and enhances both functionality and interior aesthetics. </p> <a href="https://jansonscarpets.com/blog/how-to-calculate-carpet-area/" target="_blank" class="btn"> Read More </a> </div> </body> </html>

Questions / Comments: