Testify - 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>Testify - Testimonial Section</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f0f0f0; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .testimonial-container { width: 80%; max-width: 900px; background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); display: flex; gap: 20px; position: relative; overflow: hidden; } .testimonial-container::before { content: '“'; font-size: 100px; color: rgba(0, 0, 0, 0.1); position: absolute; top: 10px; left: 20px; z-index: 0; } .testimonial { flex: 1; text-align: center; z-index: 1; } .testimonial img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #6c757d; margin-bottom: 15px; animation: fadeIn 2s ease-in-out; } @keyframes fadeIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } } .testimonial h3 { font-size: 1.5em; margin-bottom: 10px; color: #6c757d; } .testimonial p { font-size: 1em; color: #333; margin-bottom: 15px; line-height: 1.6; } .testimonial .rating { color: #f39c12; font-size: 1.2em; } </style> </head> <body> <div class="testimonial-container"> <div class="testimonial"> <img src="https://via.placeholder.com/80" alt="User Photo"> <h3>Jane Smith</h3> <p>Testify's testimonials have significantly improved my website's credibility. The animations and design are superb. 👍</p> <div class="rating">⭐⭐⭐⭐⭐</div> </div> </div> </body> </html>