# Simple Testimonial
Category: testimonial
Description: Features client testimonials in a straightforward layout to build credibility and share positive experiences.
## Implementation Context
- **Primary**: Use **SenangStart CSS** for the implementation.
- **Reference**: Tailwind CSS is provided for stylistic context only.
## SenangStart CSS Usage
To use SenangStart CSS, simply include the script in your HTML `
`:
```html
My App
Hello SenangStart!
Zero config, instant styling.
```
**Documentation**: [Getting Started Guide](https://bookklik-technologies.github.io/senangstart-css/guide/getting-started.html)
## SenangStart CSS Code
```html
<section layout="container" space="p-x:medium-3x tw-lg:p-x:big-3x m-y:large tw-lg:m-y:big-3x m-x:auto">
<div layout="grid grid-cols:1" space="m-b:medium tw-lg:m-b:large m-x:none tw-lg:m-x:giant">
<div layout="col-span:1">
<div space="p-x:small max-w:[max-content] m-b:small tw-lg:m-b:medium" visual="border-w:regular rounded:small border:blue-600 text:blue-600 font:tw-bold">
Testimonial
</div>
</div>
<div>
<h1 space="m-b:small tw-lg:m-b:medium" visual="text-size:huge tw-lg:text-size:mega capitalize font:tw-bold">
Stories from our clients
</h1>
</div>
<div layout="flex items:center">
<p space="w:[100%]" visual="text-size:base tw-lg:text-size:huge font:tw-semibold opacity:70">
Stop repeating the same messages to your customers to introduce
your business.
</p>
</div>
</div>
<div layout="grid grid-cols:1 tw-lg:grid-cols:3" space="g:medium">
<div space="p:medium" visual="border-w:thin border:gray-200 rounded:medium">
<h4 visual="text-size:big font:tw-semibold">Name</h4>
<p space="m-b:small" visual="text-size:mini">Position / Company</p>
<p visual="text-size:big">
Whether it’s a life-changing app idea, business app, mobile game
app, designing a mobile app is a real challenge especially when it
has to survive among
</p>
</div>
<div space="p:medium" visual="border-w:thin border:gray-200 rounded:medium">
<h4 visual="text-size:big font:tw-semibold">Name</h4>
<p space="m-b:small" visual="text-size:mini">Position / Company</p>
<p visual="text-size:big">
Whether it’s a life-changing app idea, business app, mobile game
app, designing a mobile app is a real challenge especially when it
has to survive among
</p>
</div>
<div space="p:medium" visual="border-w:thin border:gray-200 rounded:medium">
<h4 visual="text-size:big font:tw-semibold">Name</h4>
<p space="m-b:small" visual="text-size:mini">Position / Company</p>
<p visual="text-size:big">
Whether it’s a life-changing app idea, business app, mobile game
app, designing a mobile app is a real challenge especially when it
has to survive among
</p>
</div>
</div>
</section>
```
## Tailwind CSS Code
```html
<section class="px-6 lg:px-16 my-8 lg:my-16 container mx-auto">
<div class="grid grid-cols-1 mb-4 lg:mb-8 mx-0 lg:mx-24">
<div class="col-span-1">
<div class="border-2 rounded-md border-blue-600 text-blue-600 px-2 max-w-max font-bold mb-2 lg:mb-4">
Testimonial
</div>
</div>
<div>
<h1 class="text-2xl lg:text-6xl capitalize font-bold mb-2 lg:mb-4">
Stories from our clients
</h1>
</div>
<div class="flex items-center">
<p class="text-base lg:text-2xl font-semibold w-full opacity-70">
Stop repeating the same messages to your customers to introduce
your business.
</p>
</div>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-4">
<div class="border border-gray-200 rounded-lg p-4">
<h4 class="text-xl font-semibold">Name</h4>
<p class="text-xs mb-2">Position / Company</p>
<p class="text-xl">
Whether it’s a life-changing app idea, business app, mobile game
app, designing a mobile app is a real challenge especially when it
has to survive among
</p>
</div>
<div class="border border-gray-200 rounded-lg p-4">
<h4 class="text-xl font-semibold">Name</h4>
<p class="text-xs mb-2">Position / Company</p>
<p class="text-xl">
Whether it’s a life-changing app idea, business app, mobile game
app, designing a mobile app is a real challenge especially when it
has to survive among
</p>
</div>
<div class="border border-gray-200 rounded-lg p-4">
<h4 class="text-xl font-semibold">Name</h4>
<p class="text-xs mb-2">Position / Company</p>
<p class="text-xl">
Whether it’s a life-changing app idea, business app, mobile game
app, designing a mobile app is a real challenge especially when it
has to survive among
</p>
</div>
</div>
</section>
```