"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"> <title>Jansons Carpets Tips</title> <style> body { margin: 0; padding: 0; font-family: Arial, sans-serif; background: #f4f6f8; display: flex; justify-content: center; align-items: center; height: 100vh; } .card { background: #ffffff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); text-align: center; max-width: 500px; transition: transform 0.3s ease; } .card:hover { transform: translateY(-5px); } .title { font-size: 22px; font-weight: bold; margin-bottom: 15px; color: #333; } .description { font-size: 15px; color: #555; margin-bottom: 25px; line-height: 1.6; } .btn { display: inline-block; padding: 12px 25px; background: #008080; color: white; text-decoration: none; border-radius: 25px; font-size: 14px; transition: all 0.3s ease; animation: wave 2s infinite ease-in-out; border: 2px solid transparent; } .btn:hover { background: #ffffff; color: #008080; border: 2px solid #008080; transform: scale(1.08); box-shadow: 0 8px 20px rgba(0,128,128,0.3); } @keyframes wave { 0% { transform: translateY(0px); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0px); } } </style> </head> <body> <div class="card"> <div class="title"> Jansons Carpets Shares Tips for Selecting Carpets for Perfect Interior Design </div> <div class="description"> Jansons Carpets offers helpful tips for selecting carpets based on material, size, and design preferences. Understanding these factors helps in choosing carpets that enhance comfort, durability, and overall visual harmony of living spaces. </div> <a href="https://jansonscarpets.com/blog/tips-for-selecting-kashmiri-carpets/" target="_blank" class="btn"> Read More </a> </div> </body> </html>

Questions / Comments: