How Do I Add a Testimonial in Webflow?

Adding a testimonial to your website can be a powerful way to showcase social proof and build trust with your audience. In this tutorial, we will explore how you can easily add testimonials in Webflow using HTML.

Step 1: Create a Testimonial Section
To begin, open your Webflow project and navigate to the page where you want to add the testimonial. Start by adding a new section to your page within a

tag, like this:

<section class="testimonial-section"></section>

Step 2: Add Testimonial Content
Inside the testimonial section, we will add our first testimonial. Each testimonial will consist of three main elements: the testimonial text, the author’s name, and their title or company name. To structure this content properly, we can use HTML headings.

Testimonials

<div class="testimonial">

  • <h3>Testimonial Text</h3>
  • Author Name
  • Title or Company Name

</div>

Step 3: Style the Testimonial Section
Now that we have added our first testimonial, let’s style it to make it visually appealing. You can use CSS or Webflow’s built-in styling options to customize the appearance of your testimonials. Here’s an example of how you can style it with CSS:

Step 4: Add More Testimonials
To add more testimonials, simply duplicate the <div class="testimonial"> section and modify the content accordingly. You can add as many testimonials as you like to create a dynamic and engaging testimonial section.

Step 5: Publish Your Changes
Once you have added all your testimonials and styled them to your liking, make sure to save and publish your changes in Webflow. This will make the testimonials visible on your live website.

Now you know how to add testimonials in Webflow using HTML! By following these steps, you can create a visually appealing testimonial section that adds credibility and trust to your website.

Experiment with different styles and layouts to find what works best for your site. Good luck!