Cards
Default
<script>
import { Card } from "flowbite-svelte";
</script>
<Card href="/cards" class="p-4 sm:p-6 md:p-8">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Noteworthy technology acquisitions 2021</h5>
<p class="leading-tight font-normal text-gray-700 dark:text-gray-400">Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.</p>
</Card>
Card with action button
Noteworthy technology acquisitions 2021
Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.
<script>
import { Card, Button } from "flowbite-svelte";
import { ArrowRightOutline } from "flowbite-svelte-icons";
</script>
<Card class="p-4 sm:p-6 md:p-8">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Noteworthy technology acquisitions 2021</h5>
<p class="mb-3 leading-tight font-normal text-gray-700 dark:text-gray-400">Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.</p>
<Button class="w-fit">
Read more <ArrowRightOutline class="ms-2 h-6 w-6 text-white" />
</Button>
</Card>
Card with link
Need a help in Claim?
Go to this step by step guideline process on how to certify for your weekly benefits:
See our guideline
<script>
import { Card } from "flowbite-svelte";
import { GiftBoxSolid, ArrowUpRightFromSquareOutline } from "flowbite-svelte-icons";
</script>
<Card class="p-4 sm:p-6 md:p-8">
<GiftBoxSolid class="mb-3 h-8 w-8 text-gray-500 dark:text-gray-400" />
<a href="/">
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white">Need a help in Claim?</h5>
</a>
<p class="mb-3 font-normal text-gray-500 dark:text-gray-400">Go to this step by step guideline process on how to certify for your weekly benefits:</p>
<a href="/" class="text-primary-600 inline-flex items-center hover:underline">
See our guideline
<ArrowUpRightFromSquareOutline class="ms-2.5 h-4 w-4" />
</a>
</Card>
Card with image
Need a help in Claim?
Go to this step by step guideline process on how to certify for your weekly benefits:
See our guideline
<script>
import { Card } from "flowbite-svelte";
import { GiftBoxSolid, ArrowUpRightFromSquareOutline } from "flowbite-svelte-icons";
</script>
<Card class="p-4 sm:p-6 md:p-8">
<GiftBoxSolid class="mb-3 h-8 w-8 text-gray-500 dark:text-gray-400" />
<a href="/">
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white">Need a help in Claim?</h5>
</a>
<p class="mb-3 font-normal text-gray-500 dark:text-gray-400">Go to this step by step guideline process on how to certify for your weekly benefits:</p>
<a href="/" class="text-primary-600 inline-flex items-center hover:underline">
See our guideline
<ArrowUpRightFromSquareOutline class="ms-2.5 h-4 w-4" />
</a>
</Card>
Horizontal card
Need a help in Claim?
Go to this step by step guideline process on how to certify for your weekly benefits:
See our guideline
<script>
import { Card } from "flowbite-svelte";
import { GiftBoxSolid, ArrowUpRightFromSquareOutline } from "flowbite-svelte-icons";
</script>
<Card class="p-4 sm:p-6 md:p-8">
<GiftBoxSolid class="mb-3 h-8 w-8 text-gray-500 dark:text-gray-400" />
<a href="/">
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white">Need a help in Claim?</h5>
</a>
<p class="mb-3 font-normal text-gray-500 dark:text-gray-400">Go to this step by step guideline process on how to certify for your weekly benefits:</p>
<a href="/" class="text-primary-600 inline-flex items-center hover:underline">
See our guideline
<ArrowUpRightFromSquareOutline class="ms-2.5 h-4 w-4" />
</a>
</Card>
User profile card
Need a help in Claim?
Go to this step by step guideline process on how to certify for your weekly benefits:
See our guideline
<script>
import { Card } from "flowbite-svelte";
import { GiftBoxSolid, ArrowUpRightFromSquareOutline } from "flowbite-svelte-icons";
</script>
<Card class="p-4 sm:p-6 md:p-8">
<GiftBoxSolid class="mb-3 h-8 w-8 text-gray-500 dark:text-gray-400" />
<a href="/">
<h5 class="mb-2 text-2xl font-semibold tracking-tight text-gray-900 dark:text-white">Need a help in Claim?</h5>
</a>
<p class="mb-3 font-normal text-gray-500 dark:text-gray-400">Go to this step by step guideline process on how to certify for your weekly benefits:</p>
<a href="/" class="text-primary-600 inline-flex items-center hover:underline">
See our guideline
<ArrowUpRightFromSquareOutline class="ms-2.5 h-4 w-4" />
</a>
</Card>
Card with form inputs
<script>
import { Card, Button, Label, Input, Checkbox } from "flowbite-svelte";
</script>
<Card class="p-4 sm:p-6 md:p-8">
<form class="flex flex-col space-y-6" action="/">
<h3 class="text-xl font-medium text-gray-900 dark:text-white">Sign in to our platform</h3>
<Label class="space-y-2">
<span>Email</span>
<Input type="email" name="email" placeholder="name@company.com" required />
</Label>
<Label class="space-y-2">
<span>Your password</span>
<Input type="password" name="password" placeholder="•••••" required />
</Label>
<div class="flex items-start">
<Checkbox>Remember me</Checkbox>
<a href="/" class="text-primary-700 dark:text-primary-500 ms-auto text-sm hover:underline">Lost password?</a>
</div>
<Button type="submit" class="w-full">Login to your account</Button>
<div class="text-sm font-medium text-gray-500 dark:text-gray-300">
Not registered? <a href="/" class="text-primary-700 dark:text-primary-500 hover:underline">Create account</a>
</div>
</form>
</Card>
E-commerce card
<script>
import { Card, Button, Rating, Badge } from "flowbite-svelte";
</script>
<Card class="p-0">
<a href="/">
<img class="rounded-t-lg p-8" src="/images/product-1.webp" alt="product 1" />
</a>
<div class="px-5 pb-5">
<a href="/">
<h5 class="text-xl font-semibold tracking-tight text-gray-900 dark:text-white">Apple Watch Series 7 GPS, Aluminium Case, Starlight Sport</h5>
</a>
<Rating rating={4} size={24} class="mt-2.5 mb-5">
{#snippet text()}
<Badge class="ms-3">4</Badge>
{/snippet}
</Rating>
<div class="flex items-center justify-between">
<span class="text-3xl font-bold text-gray-900 dark:text-white">$599</span>
<Button href="/">Buy now</Button>
</div>
</div>
</Card>
Call to action card
<script>
import { Card, Button, Rating, Badge } from "flowbite-svelte";
</script>
<Card class="p-0">
<a href="/">
<img class="rounded-t-lg p-8" src="/images/product-1.webp" alt="product 1" />
</a>
<div class="px-5 pb-5">
<a href="/">
<h5 class="text-xl font-semibold tracking-tight text-gray-900 dark:text-white">Apple Watch Series 7 GPS, Aluminium Case, Starlight Sport</h5>
</a>
<Rating rating={4} size={24} class="mt-2.5 mb-5">
{#snippet text()}
<Badge class="ms-3">4</Badge>
{/snippet}
</Rating>
<div class="flex items-center justify-between">
<span class="text-3xl font-bold text-gray-900 dark:text-white">$599</span>
<Button href="/">Buy now</Button>
</div>
</div>
</Card>
Default
<script>
import { Card } from "flowbite-svelte";
</script>
<Card href="/cards" class="p-4 sm:p-6 md:p-8">
<h5 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">Noteworthy technology acquisitions 2021</h5>
<p class="leading-tight font-normal text-gray-700 dark:text-gray-400">Here are the biggest enterprise technology acquisitions of 2021 so far, in reverse chronological order.</p>
</Card>
Card with list
Latest Customers
View all
Neil Sims
email@windster.com

Bonnie Green
email@windster.com

Michael Gough
email@windster.com
<script lang="ts">
import { Card, Listgroup, Avatar } from "flowbite-svelte";
let list = [
{
img: { src: "/images/profile-picture-1.webp", alt: "Neil Sims" },
name: "Neil Sims",
email: "email@windster.com",
value: "$320"
},
{
img: { src: "/images/profile-picture-2.webp", alt: "Bonnie Green" },
name: "Bonnie Green",
email: "email@windster.com",
value: "$3467"
},
{
img: { src: "/images/profile-picture-3.webp", alt: "Michael Gough" },
name: "Michael Gough",
email: "email@windster.com",
value: "$67"
}
];
</script>
<Card class="p-4 sm:p-8 md:p-10" size="md">
<div class="mb-4 flex items-center justify-between">
<h5 class="text-xl leading-none font-bold text-gray-900 dark:text-white">Latest Customers</h5>
<a href="/" class="text-primary-600 dark:text-primary-500 text-sm font-medium hover:underline">View all</a>
</div>
<Listgroup items={list} class="border-0 dark:bg-transparent!">
{#snippet children(item)}
<div class="flex items-center space-x-4 py-2 rtl:space-x-reverse">
{#if typeof item === "object" && item.img}
<Avatar src={item.img.src} alt={item.img.alt} class="shrink-0" />
<div class="min-w-0 flex-1">
<p class="truncate text-sm font-medium text-gray-900 dark:text-white">
{item.name}
</p>
<p class="truncate text-sm text-gray-500 dark:text-gray-400">
{item.email}
</p>
</div>
<div class="inline-flex items-center text-base font-semibold text-gray-900 dark:text-white">
{item.value}
</div>
{/if}
</div>
{/snippet}
</Listgroup>
</Card>
Pricing card
Standard plan
- 2 team members
- 20GB Cloud storage
- Integration help
- Sketch Files
- API Access
- Complete documentation
- 24×7 phone & email support
<script>
import { Card, Button } from "flowbite-svelte";
import { CheckCircleSolid } from "flowbite-svelte-icons";
</script>
<Card class="p-4 sm:p-8 md:p-10">
<h5 class="mb-4 text-xl font-medium text-gray-500 dark:text-gray-400">Standard plan</h5>
<div class="flex items-baseline text-gray-900 dark:text-white">
<span class="text-3xl font-semibold">$</span>
<span class="text-5xl font-extrabold tracking-tight">49</span>
<span class="ms-1 text-xl font-normal text-gray-500 dark:text-gray-400">/month</span>
</div>
<!-- List -->
<ul class="my-7 space-y-4">
<li class="flex space-x-2 rtl:space-x-reverse">
<CheckCircleSolid class="text-primary-600 dark:text-primary-500 h-4 w-4" />
<span class="text-base leading-tight font-normal text-gray-500 dark:text-gray-400">2 team members</span>
</li>
<li class="flex space-x-2 rtl:space-x-reverse">
<CheckCircleSolid class="text-primary-600 dark:text-primary-500 h-4 w-4" />
<span class="text-base leading-tight font-normal text-gray-500 dark:text-gray-400">20GB Cloud storage</span>
</li>
<li class="flex space-x-2 rtl:space-x-reverse">
<CheckCircleSolid class="text-primary-600 dark:text-primary-500 h-4 w-4" />
<span class="text-base leading-tight font-normal text-gray-500 dark:text-gray-400">Integration help</span>
</li>
<li class="flex space-x-2 line-through decoration-gray-500 rtl:space-x-reverse">
<CheckCircleSolid class="h-4 w-4 text-gray-400 dark:text-gray-500" />
<span class="text-base leading-tight font-normal text-gray-500">Sketch Files</span>
</li>
<li class="flex space-x-2 line-through decoration-gray-500 rtl:space-x-reverse">
<CheckCircleSolid class="h-4 w-4 text-gray-400 dark:text-gray-500" />
<span class="text-base leading-tight font-normal text-gray-500">API Access</span>
</li>
<li class="flex space-x-2 line-through decoration-gray-500 rtl:space-x-reverse">
<CheckCircleSolid class="h-4 w-4 text-gray-400 dark:text-gray-500" />
<span class="text-base leading-tight font-normal text-gray-500">Complete documentation</span>
</li>
<li class="flex space-x-2 line-through decoration-gray-500 rtl:space-x-reverse">
<CheckCircleSolid class="h-4 w-4 text-gray-400 dark:text-gray-500" />
<span class="text-base leading-tight font-normal text-gray-500">24×7 phone & email support</span>
</li>
</ul>
<Button class="w-full">Choose plan</Button>
</Card>
Testimonial card
Very easy this was to integrate
If you care for your time, I hands down would go with this."

Solid foundation for any project
Designing with Figma components that can be easily translated to the utility classes of Tailwind CSS is a huge timesaver!"

Mindblowing workflow
Aesthetically, the well designed components are beautiful and will undoubtedly level up your next application."

Efficient Collaborating
You have many examples that can be used to create a fast prototype for your team."

<script>
import { Card } from "flowbite-svelte";
</script>
<Card size="xl" class="grid md:grid-cols-2">
<figure class="flex flex-col items-center justify-center rounded-t-lg border-b border-gray-200 bg-white p-8 text-center md:rounded-t-none md:rounded-tl-lg md:border-e dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Very easy this was to integrate</h3>
<p class="my-4 font-light">If you care for your time, I hands down would go with this."</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/karen-nelson.png" alt="Karen profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Bonnie Green</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">Developer at Open AI</div>
</div>
</figcaption>
</figure>
<figure class="flex flex-col items-center justify-center rounded-tr-lg border-b border-gray-200 bg-white p-8 text-center dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Solid foundation for any project</h3>
<p class="my-4 font-light">Designing with Figma components that can be easily translated to the utility classes of Tailwind CSS is a huge timesaver!"</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png" alt="Robert profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Roberta Casas</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">Lead designer at Dropbox</div>
</div>
</figcaption>
</figure>
<figure class="flex flex-col items-center justify-center rounded-bl-lg border-b border-gray-200 bg-white p-8 text-center md:border-e md:border-b-0 dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Mindblowing workflow</h3>
<p class="my-4 font-light">Aesthetically, the well designed components are beautiful and will undoubtedly level up your next application."</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png" alt="Jese profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Jese Leos</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">Software Engineer at Facebook</div>
</div>
</figcaption>
</figure>
<figure class="flex flex-col items-center justify-center rounded-b-lg border-gray-200 bg-white p-8 text-center md:rounded-br-lg dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Efficient Collaborating</h3>
<p class="my-4 font-light">You have many examples that can be used to create a fast prototype for your team."</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/joseph-mcfall.png" alt="joseph profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Joseph McFall</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">CTO at Google</div>
</div>
</figcaption>
</figure>
</Card>
Custom size
Very easy this was to integrate
If you care for your time, I hands down would go with this."

Solid foundation for any project
Designing with Figma components that can be easily translated to the utility classes of Tailwind CSS is a huge timesaver!"

Mindblowing workflow
Aesthetically, the well designed components are beautiful and will undoubtedly level up your next application."

Efficient Collaborating
You have many examples that can be used to create a fast prototype for your team."

<script>
import { Card } from "flowbite-svelte";
</script>
<Card size="xl" class="grid md:grid-cols-2">
<figure class="flex flex-col items-center justify-center rounded-t-lg border-b border-gray-200 bg-white p-8 text-center md:rounded-t-none md:rounded-tl-lg md:border-e dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Very easy this was to integrate</h3>
<p class="my-4 font-light">If you care for your time, I hands down would go with this."</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/karen-nelson.png" alt="Karen profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Bonnie Green</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">Developer at Open AI</div>
</div>
</figcaption>
</figure>
<figure class="flex flex-col items-center justify-center rounded-tr-lg border-b border-gray-200 bg-white p-8 text-center dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Solid foundation for any project</h3>
<p class="my-4 font-light">Designing with Figma components that can be easily translated to the utility classes of Tailwind CSS is a huge timesaver!"</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/roberta-casas.png" alt="Robert profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Roberta Casas</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">Lead designer at Dropbox</div>
</div>
</figcaption>
</figure>
<figure class="flex flex-col items-center justify-center rounded-bl-lg border-b border-gray-200 bg-white p-8 text-center md:border-e md:border-b-0 dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Mindblowing workflow</h3>
<p class="my-4 font-light">Aesthetically, the well designed components are beautiful and will undoubtedly level up your next application."</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/jese-leos.png" alt="Jese profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Jese Leos</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">Software Engineer at Facebook</div>
</div>
</figcaption>
</figure>
<figure class="flex flex-col items-center justify-center rounded-b-lg border-gray-200 bg-white p-8 text-center md:rounded-br-lg dark:border-gray-700 dark:bg-gray-800">
<blockquote class="mx-auto mb-4 max-w-2xl text-gray-500 dark:text-gray-400">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">Efficient Collaborating</h3>
<p class="my-4 font-light">You have many examples that can be used to create a fast prototype for your team."</p>
</blockquote>
<figcaption class="flex items-center justify-center space-x-3 rtl:space-x-reverse">
<img class="h-9 w-9 rounded-full" src="https://flowbite.s3.amazonaws.com/blocks/marketing-ui/avatars/joseph-mcfall.png" alt="joseph profile" />
<div class="space-y-0.5 text-left font-medium dark:text-white">
<div>Joseph McFall</div>
<div class="text-sm font-light text-gray-500 dark:text-gray-400">CTO at Google</div>
</div>
</figcaption>
</figure>
</Card>