"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 Tribal Carpets</title> <style> body { margin: 0; font-family: 'Poppins', sans-serif; background: radial-gradient(circle at top, #f8f3ed, #e8dccb); display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } /* Decorative background pattern */ body::before { content: ""; position: absolute; width: 200%; height: 200%; background: repeating-linear-gradient( 45deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 2px, transparent 2px, transparent 12px ); animation: moveBg 20s linear infinite; z-index: 0; } @keyframes moveBg { from { transform: translate(0,0); } to { transform: translate(-100px,-100px); } } .container { position: relative; z-index: 1; max-width: 780px; padding: 50px; background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 15px 50px rgba(0,0,0,0.15); text-align: center; border: 1px solid rgba(255,255,255,0.4); animation: fadeUp 1.2s ease; } h1 { font-size: 28px; color: #1f1f1f; line-height: 1.5; margin-bottom: 25px; background: linear-gradient(45deg, #222, #444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } p { font-size: 16px; color: #555; line-height: 1.8; } .btn { display: inline-block; margin-top: 35px; padding: 14px 36px; font-size: 16px; color: #fff; background: linear-gradient(135deg, #e63946, #9d0208); text-decoration: none; border-radius: 50px; letter-spacing: 0.5px; position: relative; overflow: hidden; transition: all 0.4s ease; box-shadow: 0 8px 25px rgba(157,2,8,0.4); } /* Shine effect */ .btn::before { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: rgba(255,255,255,0.3); transform: skewX(-25deg); transition: 0.5s; } .btn:hover::before { left: 130%; } .btn:hover { transform: translateY(-5px) scale(1.07); box-shadow: 0 12px 30px rgba(157,2,8,0.6); } @keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } } </style> </head> <body> <div class="container"> <h1> Jansons Carpets Provides Best Tribal Carpets in Delhi Inspired by Cultural Heritage </h1> <p> Jansons Carpets showcases the finest tribal carpets crafted with bold patterns and authentic handcrafted techniques. Each piece reflects timeless artistry, bringing warmth, elegance, and a distinctive cultural charm to modern interiors. </p> <a href="https://jansonscarpets.com/tribal-carpets.html" target="_blank" class="btn"> Explore Collection </a> </div> </body> </html>

Questions / Comments: