Create A Testimonial Page For an educational website

Here's an example of a testimonial section for an educational website using Bootstrap:


html
<!DOCTYPE html>
<html>
	<head>
		<title>Educational Website Testimonials</title>
		<link rel="stylesheet"
		href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
	</head>
	<body>

		<div class="container">
			<h1>Student Testimonials</h1>
			<hr>

			<div class="row">
				<div class="col-md-4">
					<div class="card">
						<img src="student1.jpg" class="card-img-top" alt="Student 1">
						<div class="card-body">
							<h5 class="card-title">John Doe</h5>
							<p class="card-text">"I have learned so much from this website. The courses are well-structured and the instructors are knowledgeable. Highly recommended!"</p>
						</div>
					</div>
				</div>
				<div class="col-md-4">
					<div class="card">
						<img src="student2.jpg" class="card-img-top" alt="Student 2">
						<div class="card-body">
							<h5 class="card-title">Jane Smith</h5>
							<p class="card-text">"I was struggling with a particular subject, but the tutorials on this website made it much easier for me to understand. Thank you!"</p>
						</div>
					</div>
				</div>

				<div class="col-md-4">
					<div class="card">
						<img src="student3.jpg" class="card-img-top" alt="Student 3">
						<div class="card-body">
							<h5 class="card-title">Alex Johnson</h5>
							<p class="card-text">"The interactive quizzes and exercises helped me reinforce my learning. It's a fantastic resource for students."</p>
						</div>
					</div>
				</div>
			</div>
		</div>

		<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
		<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
		<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
	</body>
</html>

In the above example, Bootstrap classes and components are used to create a testimonial section. The testimonial section consists of three cards, each representing a different student's testimonial. Each card contains an image, the student's name, and their testimonial quote.

You can replace the `student1.jpg`, `student2.jpg`, and `student3.jpg` with the actual images of your students or any other appropriate images.

Remember to include the Bootstrap CSS and JavaScript files using the provided CDN links in the `<head>` section of your HTML document.


Output:



About the Author



Silan Software is one of the India's leading provider of offline & online training for Java, Python, AI (Machine Learning, Deep Learning), Data Science, Software Development & many more emerging Technologies.

We provide Academic Training || Industrial Training || Corporate Training || Internship || Java || Python || AI using Python || Data Science etc





 PreviousNext