"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</title> <style> body { margin: 0; font-family: Arial, sans-serif; background-color: #f2f2f2; display: flex; justify-content: center; align-items: center; height: 100vh; text-align: center; } .container { max-width: 700px; padding: 20px; } h1 { font-size: 28px; margin-bottom: 15px; color: #333; } p { font-size: 16px; color: #555; line-height: 1.6; margin-bottom: 25px; } .btn { display: inline-block; padding: 12px 25px; background-color: #008080; color: white; text-decoration: none; font-size: 16px; border-radius: 30px; border: 2px solid #008080; transition: all 0.3s ease; animation: pulse 1.5s infinite; } .btn:hover { background-color: #ffffff; color: #008080; transform: scale(1.1); animation: none; } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(0, 128, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 128, 128, 0); } } </style> </head> <body> <div class="container"> <h1>Jansons Carpets Presents Handmade Indian Carpets Crafted with Traditional Expertise</h1> <p> Jansons Carpets features handmade Indian carpets created by skilled artisans using high-quality materials and traditional weaving techniques. These carpets enhance interiors with durability, warmth, and artistic beauty, making them perfect for elegant and comfortable living spaces. </p> <a href="https://jansonscarpets.com/" target="_blank" class="btn"> Visit Website </a> </div> </body> </html>

Questions / Comments: