Echo Reviews - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Echo Reviews - Testimonial Section</title> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(120deg, #d4fc79, #96e6a1); margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .testimonial-container { max-width: 700px; margin: 20px auto; padding: 30px; background: rgba(255, 255, 255, 0.9); border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); text-align: center; position: relative; overflow: hidden; } .testimonial-container::before { content: ''; position: absolute; top: -50px; left: -50px; width: 150px; height: 150px; background: rgba(255, 255, 255, 0.3); border-radius: 50%; z-index: 0; } .testimonial-container::after { content: ''; position: absolute; bottom: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255, 255, 255, 0.3); border-radius: 50%; z-index: 0; } .testimonial { position: relative; z-index: 1; } .testimonial img { width: 90px; height: 90px; border-radius: 50%; border: 4px solid #96e6a1; margin-bottom: 20px; transition: transform 0.3s; } .testimonial img:hover { transform: rotate(10deg) scale(1.1); } .testimonial h3 { font-size: 1.5em; margin-bottom: 10px; color: #2c3e50; } .testimonial p { font-size: 1em; color: #34495e; margin-bottom: 15px; } .testimonial .icons { display: flex; justify-content: center; gap: 10px; } .testimonial .icons i { font-size: 1.5em; color: #3498db; transition: color 0.3s, transform 0.3s; } .testimonial .icons i:hover { color: #2c3e50; transform: scale(1.2); } </style> </head> <body> <div class="testimonial-container"> <div class="testimonial"> <img src="https://via.placeholder.com/90" alt="User Photo"> <h3>Michael Brown</h3> <p>EchoReviews has provided an excellent way to display customer feedback. The unique design and animations are fantastic. ⭐️</p> <div class="icons"> <i class="fas fa-thumbs-up"></i> <i class="fas fa-star"></i> <i class="fas fa-heart"></i> </div> </div> </div> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> </body> </html>