image
imagewidth (px)
2.56k
3.07k
text
stringlengths
344
6.31k
llm_generated_idea
stringlengths
25
566
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Agency</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-red-500 text-white"> <th class="px-4 py-2">Property</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">456 Oak St</td> <td class="border px-4 py-2">$750,000</td> <td class="border px-4 py-2">4</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">789 Maple St</td> <td class="border px-4 py-2">$1,000,000</td> <td class="border px-4 py-2">5</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Artist Name</th> <th class="px-4 py-2">Artwork Title</th> <th class="px-4 py-2">Year Created</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Artist 1</td> <td class="border px-4 py-2">Artwork 1</td> <td class="border px-4 py-2">2020</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Artist 2</td> <td class="border px-4 py-2">Artwork 2</td> <td class="border px-4 py-2">2019</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Type</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">1889</td> <td class="border px-4 py-2">Oil on canvas</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6 text-center">Educational Institution</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Course</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Computer Science</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$50,000</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Business Administration</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$55,000</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Psychology</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$60,000</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
education institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Agency</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-500 text-white"> <th class="px-4 py-2">Property</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">456 Oak St</td> <td class="border px-4 py-2">$600,000</td> <td class="border px-4 py-2">4</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">789 Maple St</td> <td class="border px-4 py-2">$700,000</td> <td class="border px-4 py-2">5</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Doctors List</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-green-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Specialty</th> <th class="px-4 py-2">Experience</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Dr. John Doe</td> <td class="border px-4 py-2">Cardiology</td> <td class="border px-4 py-2">10 years</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Dr. Jane Smith</td> <td class="border px-4 py-2">Neurology</td> <td class="border px-4 py-2">15 years</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
hospital
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Non-Profit Organization</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-red-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">Director</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Secretary</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
non-profit organization
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Fashion Brand Products</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Availability</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Product 1</td> <td class="border px-4 py-2">$100</td> <td class="border px-4 py-2">In Stock</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Product 2</td> <td class="border px-4 py-2">$200</td> <td class="border px-4 py-2">Out of Stock</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
fashion brand
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Non-Profit Organization</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-yellow-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">Director</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Secretary</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
non-profit organization
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-blue-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Architect</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Year 1</td> <td class="border px-4 py-2">Architect 1</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Listings</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> <th class="px-4 py-2">Bathrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> <td class="border px-4 py-2">2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Course</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Computer Science</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$50,000</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Business Administration</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$55,000</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Psychology</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$60,000</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
educational institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Healthcare Provider</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Doctor Name</th> <th class="px-4 py-2">Specialty</th> <th class="px-4 py-2">Hospital</th> <th class="px-4 py-2">Contact</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Dr. John Doe</td> <td class="border px-4 py-2">Cardiology</td> <td class="border px-4 py-2">General Hospital</td> <td class="border px-4 py-2">johndoe@gmail.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
healthcare provider
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Graphic Design Studio Projects</h1> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-gray-200"> <tr> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Client</th> <th class="px-4 py-2">Date</th> <th class="px-4 py-2">Status</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Client 1</td> <td class="border px-4 py-2">01/01/2020</td> <td class="border px-4 py-2">Completed</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </div> </body> </html>
graphic design studio
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Architect</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Year 1</td> <td class="border px-4 py-2">Architect 1</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Tech Startups</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Industry</th> <th class="px-4 py-2">Founded</th> <th class="px-4 py-2">Headquarters</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Apple</td> <td class="border px-4 py-2">Technology</td> <td class="border px-4 py-2">1976</td> <td class="border px-4 py-2">Cupertino, California, U.S.</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Amazon</td> <td class="border px-4 py-2">E-commerce</td> <td class="border px-4 py-2">1994</td> <td class="border px-4 py-2">Seattle, Washington, U.S.</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Google</td> <td class="border px-4 py-2">Internet</td> <td class="border px-4 py-2">1998</td> <td class="border px-4 py-2">Mountain View, California, U.S.</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
tech startup
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Non-Profit Organization</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">Director</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Secretary</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
non-profit organization
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Doctors at Health and Wellness Clinic</h1> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-gray-200"> <tr> <th class="px-4 py-2">Doctor</th> <th class="px-4 py-2">Specialty</th> <th class="px-4 py-2">Availability</th> <th class="px-4 py-2">Contact</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Dr. John Doe</td> <td class="border px-4 py-2">Cardiology</td> <td class="border px-4 py-2">Monday - Friday, 9am - 5pm</td> <td class="border px-4 py-2">johndoe@clinic.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </div> </body> </html>
health and wellness clinic
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Type</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">1889</td> <td class="border px-4 py-2">Oil on canvas</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">The Kiss</td> <td class="border px-4 py-2">Gustav Klimt</td> <td class="border px-4 py-2">1908</td> <td class="border px-4 py-2">Oil on wood</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Publishing Company</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Book Title</th> <th class="px-4 py-2">Author</th> <th class="px-4 py-2">Publication Date</th> <th class="px-4 py-2">Price</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Book 1</td> <td class="border px-4 py-2">Author 1</td> <td class="border px-4 py-2">2020-01-01</td> <td class="border px-4 py-2">$20</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Book 2</td> <td class="border px-4 py-2">Author 2</td> <td class="border px-4 py-2">2020-02-01</td> <td class="border px-4 py-2">$25</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
publishing company
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Interior Design Studio Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-blue-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Client</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Date</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Client 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Date 1</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
interior design studio
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-yellow-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Architect</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Year 1</td> <td class="border px-4 py-2">Architect 1</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Type</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">1889</td> <td class="border px-4 py-2">Oil on canvas</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6 text-center">Fitness Club Membership Plans</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Plan Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Benefits</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Basic</td> <td class="border px-4 py-2">$50/month</td> <td class="border px-4 py-2">1 month</td> <td class="border px-4 py-2">Access to basic facilities</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Premium</td> <td class="border px-4 py-2">$100/month</td> <td class="border px-4 py-2">3 months</td> <td class="border px-4 py-2">Access to all facilities, personal trainer</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">VIP</td> <td class="border px-4 py-2">$200/month</td> <td class="border px-4 py-2">6 months</td> <td class="border px-4 py-2">Access to all facilities, personal trainer, special discounts</td> </tr> </tbody> </table> </div> </body> </html>
fitness club
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Listings</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> <th class="px-4 py-2">Bathrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> <td class="border px-4 py-2">2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate company
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Education Institute</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Course Name</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> <th class="px-4 py-2">Start Date</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Bachelor of Science</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$50,000</td> <td class="border px-4 py-2">January 1, 2023</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Master of Science</td> <td class="border px-4 py-2">2 years</td> <td class="border px-4 py-2">$40,000</td> <td class="border px-4 py-2">September 1, 2023</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
education institute
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Non-Profit Organization</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">Director</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Secretary</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
non-profit organization
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Fashion Retailer Products</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Availability</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Product 1</td> <td class="border px-4 py-2">$100</td> <td class="border px-4 py-2">In Stock</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Product 2</td> <td class="border px-4 py-2">$200</td> <td class="border px-4 py-2">Out of Stock</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
fashion retailer
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Listings</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> <th class="px-4 py-2">Bathrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> <td class="border px-4 py-2">2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Museum</h1> <table class="table-auto w-full"> <thead> <tr> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Year</th> </tr> </thead> <tbody> <tr> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">1889</td> </tr> <!-- Repeat the above row for 9 more artists --> <tr> <td class="border px-4 py-2">Pablo Picasso</td> <td class="border px-4 py-2">Guernica</td> <td class="border px-4 py-2">1937</td> </tr> <!-- Repeat the above row for 9 more artists --> </tbody> </table> </div> </body> </html>
art museum site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Gaming Company Table</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-yellow-500 text-white"> <th class="px-4 py-2">Game Name</th> <th class="px-4 py-2">Genre</th> <th class="px-4 py-2">Release Date</th> <th class="px-4 py-2">Platforms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Game 1</td> <td class="border px-4 py-2">Genre 1</td> <td class="border px-4 py-2">Date 1</td> <td class="border px-4 py-2">Platform 1</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Game 2</td> <td class="border px-4 py-2">Genre 2</td> <td class="border px-4 py-2">Date 2</td> <td class="border px-4 py-2">Platform 2</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Game 3</td> <td class="border px-4 py-2">Genre 3</td> <td class="border px-4 py-2">Date 3</td> <td class="border px-4 py-2">Platform 3</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
gaming company site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6 text-center">Education and Training Courses</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Course Name</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> <th class="px-4 py-2">Enroll Now</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Introduction to Computer Science</td> <td class="border px-4 py-2">12 weeks</td> <td class="border px-4 py-2">$1000</td> <td class="border px-4 py-2"><button class="bg-indigo-500 hover:bg-indigo-700 text-white font-bold py-2 px-4 rounded">Enroll</button></td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
education and training site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6">Fashion Brand E-commerce Site</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Quantity</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Product 1</td> <td class="border px-4 py-2">$100</td> <td class="border px-4 py-2">10</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Product 2</td> <td class="border px-4 py-2">$200</td> <td class="border px-4 py-2">20</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
e-commerce site for a fashion brand
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Author</th> <th class="px-4 py-2">Date</th> <th class="px-4 py-2">Category</th> <th class="px-4 py-2">Tags</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Blog Post 1</td> <td class="border px-4 py-2">Author 1</td> <td class="border px-4 py-2">Date 1</td> <td class="border px-4 py-2">Category 1</td> <td class="border px-4 py-2">Tag 1, Tag 2</td> </tr> <!-- Repeat the above row for 9 more blog posts --> <tr class="bg-white"> <td class="border px-4 py-2">Blog Post 2</td> <td class="border px-4 py-2">Author 2</td> <td class="border px-4 py-2">Date 2</td> <td class="border px-4 py-2">Category 2</td> <td class="border px-4 py-2">Tag 3, Tag 4</td> </tr> <!-- Repeat the above row for 8 more blog posts --> <!-- ... --> <tr class="bg-white"> <td class="border px-4 py-2">Blog Post 10</td> <td class="border px-4 py-2">Author 10</td> <td class="border px-4 py-2">Date 10</td> <td class="border px-4 py-2">Category 10</td> <td class="border px-4 py-2">Tag 10, Tag 11</td> </tr> </tbody> </table> </div> </body> </html>
b logging platform
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="table-auto w-full"> <thead> <tr> <th class="px-4 py-2">Course Name</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> <th class="px-4 py-2">Teacher</th> </tr> </thead> <tbody> <tr> <td class="border px-4 py-2">Mathematics</td> <td class="border px-4 py-2">2 Years</td> <td class="border px-4 py-2">$1000</td> <td class="border px-4 py-2">John Doe</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
educational institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Tech Startups</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-yellow-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Industry</th> <th class="px-4 py-2">Founded</th> <th class="px-4 py-2">Headquarters</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Apple</td> <td class="border px-4 py-2">Technology</td> <td class="border px-4 py-2">1976</td> <td class="border px-4 py-2">Cupertino, California, U.S.</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Amazon</td> <td class="border px-4 py-2">E-commerce</td> <td class="border px-4 py-2">1994</td> <td class="border px-4 py-2">Seattle, Washington, U.S.</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Google</td> <td class="border px-4 py-2">Internet</td> <td class="border px-4 py-2">1998</td> <td class="border px-4 py-2">Mountain View, California, U.S.</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
tech startup
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Hospital Information</h1> <table class="table-auto w-full"> <thead> <tr> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Specialty</th> <th class="px-4 py-2">Experience</th> </tr> </thead> <tbody> <tr> <td class="border px-4 py-2">Dr. John Doe</td> <td class="border px-4 py-2">Cardiology</td> <td class="border px-4 py-2">10 years</td> </tr> <tr> <td class="border px-4 py-2">Dr. Jane Smith</td> <td class="border px-4 py-2">Neurology</td> <td class="border px-4 py-2">15 years</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
hospital website
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Architect</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Year 1</td> <td class="border px-4 py-2">Architect 1</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Project 2</td> <td class="border px-4 py-2">Location 2</td> <td class="border px-4 py-2">Year 2</td> <td class="border px-4 py-2">Architect 2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6">Fashion Brand E-commerce Site</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Quantity</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Product 1</td> <td class="border px-4 py-2">$100</td> <td class="border px-4 py-2">10</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Product 2</td> <td class="border px-4 py-2">$200</td> <td class="border px-4 py-2">20</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
e-commerce site for a fashion brand
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <table class="w-full table-auto"> <thead> <tr class="bg-gray-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Office</th> <th class="px-4 py-2">Age</th> <th class="px-4 py-2">Start date</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Tiger Nixon</td> <td class="border px-4 py-2">System Architect</td> <td class="border px-4 py-2">Edinburgh</td> <td class="border px-4 py-2">61</td> <td class="border px-4 py-2">2011/04/25</td> </tr> <!-- Repeat the above row for 9 more times --> <tr class="bg-white"> <td class="border px-4 py-2">Garrett Winters</td> <td class="border px-4 py-2">Accountant</td> <td class="border px-4 py-2">Tokyo</td> <td class="border px-4 py-2">63</td> <td class="border px-4 py-2">2011/07/25</td> </tr> <!-- Repeat the above row for 9 more times --> </tbody> </table> </div> </body> </html>
tech company site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Travel Packages</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Destination</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Book Now</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Paris</td> <td class="border px-4 py-2">7 Days</td> <td class="border px-4 py-2">$1,000</td> <td class="border px-4 py-2"><a href="#" class="text-pink-500">Book Now</a></td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">New York</td> <td class="border px-4 py-2">5 Days</td> <td class="border px-4 py-2">$1,500</td> <td class="border px-4 py-2"><a href="#" class="text-pink-500">Book Now</a></td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
travel agency site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Listings</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-red-500 text-white"> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> <th class="px-4 py-2">Bathrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> <td class="border px-4 py-2">2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architectural Firm Projects</h1> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-yellow-500 text-white"> <tr> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Architect</th> </tr> </thead> <tbody class="bg-white"> <tr> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Year 1</td> <td class="border px-4 py-2">Architect 1</td> </tr> <tr> <td class="border px-4 py-2">Project 2</td> <td class="border px-4 py-2">Location 2</td> <td class="border px-4 py-2">Year 2</td> <td class="border px-4 py-2">Architect 2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </div> </body> </html>
architectural firm site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Year</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Pablo Picasso</td> <td class="border px-4 py-2">Guernica</td> <td class="border px-4 py-2">1937</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">1889</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Healthcare Provider Table</h1> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-pink-500 text-white"> <tr> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Specialty</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Rating</th> </tr> </thead> <tbody class="bg-white"> <tr> <td class="border px-4 py-2">Dr. John Doe</td> <td class="border px-4 py-2">Cardiology</td> <td class="border px-4 py-2">New York</td> <td class="border px-4 py-2">4.5</td> </tr> <tr> <td class="border px-4 py-2">Dr. Jane Smith</td> <td class="border px-4 py-2">Dermatology</td> <td class="border px-4 py-2">Los Angeles</td> <td class="border px-4 py-2">4.8</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </div> </body> </html>
healthcare provider site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Graphic Design Studio</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-red-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">Graphic Designer</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Art Director</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
graphic design studio site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-500 text-white"> <th class="px-4 py-2">Course Name</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Computer Science</td> <td class="border px-4 py-2">4 Years</td> <td class="border px-4 py-2">$50,000</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Business Administration</td> <td class="border px-4 py-2">4 Years</td> <td class="border px-4 py-2">$55,000</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Physics</td> <td class="border px-4 py-2">3 Years</td> <td class="border px-4 py-2">$45,000</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
educational institution site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Fashion Retailer Products</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Availability</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Product 1</td> <td class="border px-4 py-2">$100</td> <td class="border px-4 py-2">In Stock</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Product 2</td> <td class="border px-4 py-2">$200</td> <td class="border px-4 py-2">Out of Stock</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
fashion retailer
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="table-auto w-full"> <thead> <tr> <th class="px-4 py-2">Course Name</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> <th class="px-4 py-2">Teacher</th> </tr> </thead> <tbody> <tr> <td class="border px-4 py-2">Mathematics</td> <td class="border px-4 py-2">2 Years</td> <td class="border px-4 py-2">$1000</td> <td class="border px-4 py-2">John Doe</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
educational institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Agency</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Property</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">456 Oak St</td> <td class="border px-4 py-2">$750,000</td> <td class="border px-4 py-2">4</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">789 Maple St</td> <td class="border px-4 py-2">$1,000,000</td> <td class="border px-4 py-2">5</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Interior Design Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Client</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Date of Completion</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Client 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Date 1</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Project 2</td> <td class="border px-4 py-2">Client 2</td> <td class="border px-4 py-2">Location 2</td> <td class="border px-4 py-2">Date 2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
interior design firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Medical Practice</h1> <table class="table-auto w-full"> <thead> <tr class="bg-red-500 text-white"> <th class="px-4 py-2">Patient Name</th> <th class="px-4 py-2">Age</th> <th class="px-4 py-2">Diagnosis</th> <th class="px-4 py-2">Treatment</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">45</td> <td class="border px-4 py-2">Flu</td> <td class="border px-4 py-2">Rest and fluid intake</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
medical practice
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architectural Firm Information</h1> <table class="table-auto w-full"> <thead> <tr class="bg-blue-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Phone</th> <th class="px-4 py-2">Email</th> <th class="px-4 py-2">Website</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">123 Main St, Anytown, USA</td> <td class="border px-4 py-2">(123) 456-7890</td> <td class="border px-4 py-2">john.doe@example.com</td> <td class="border px-4 py-2">www.johndoe.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architectural firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Projects</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Project Name</th> <th class="px-4 py-2">Location</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Architect</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Project 1</td> <td class="border px-4 py-2">Location 1</td> <td class="border px-4 py-2">Year 1</td> <td class="border px-4 py-2">Architect 1</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">IT Consulting Firm</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-indigo-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">CEO</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">CTO</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Bob Smith</td> <td class="border px-4 py-2">CFO</td> <td class="border px-4 py-2">bob.smith@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
it consulting firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Year</th> <th class="px-4 py-2">Type</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">1889</td> <td class="border px-4 py-2">Oil on canvas</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">The Kiss</td> <td class="border px-4 py-2">Gustav Klimt</td> <td class="border px-4 py-2">1908</td> <td class="border px-4 py-2">Oil on wood</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Course</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Computer Science</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$50,000</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Business Administration</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$55,000</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Psychology</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$60,000</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
educational institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Listings</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-purple-500 text-white"> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> <th class="px-4 py-2">Bathrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> <td class="border px-4 py-2">2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate company
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Fashion Retailer Products</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-green-500 text-white"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Availability</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Product 1</td> <td class="border px-4 py-2">$100</td> <td class="border px-4 py-2">In Stock</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Product 2</td> <td class="border px-4 py-2">$200</td> <td class="border px-4 py-2">Out of Stock</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
**fashion retailer
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-green-500 text-white"> <th class="px-4 py-2">Course</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Computer Science</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$50,000</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Business Administration</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$55,000</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Psychology</td> <td class="border px-4 py-2">4 years</td> <td class="border px-4 py-2">$60,000</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
**educational institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h2 class="text-2xl font-bold mb-4">Art Studio Schedule</h2> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-gray-200"> <tr> <th class="px-4 py-2">Day</th> <th class="px-4 py-2">Opening Hours</th> <th class="px-4 py-2">Closing Hours</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Monday</td> <td class="border px-4 py-2">9:00 AM</td> <td class="border px-4 py-2">5:00 PM</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Tuesday</td> <td class="border px-4 py-2">9:00 AM</td> <td class="border px-4 py-2">5:00 PM</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Wednesday</td> <td class="border px-4 py-2">9:00 AM</td> <td class="border px-4 py-2">5:00 PM</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Thursday</td> <td class="border px-4 py-2">9:00 AM</td> <td class="border px-4 py-2">5:00 PM</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Friday</td> <td class="border px-4 py-2">9:00 AM</td> <td class="border px-4 py-2">5:00 PM</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Saturday</td> <td class="border px-4 py-2">10:00 AM</td> <td class="border px-4 py-2">4:00 PM</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">Sunday</td> <td class="border px-4 py-2">Closed</td> <td class="border px-4 py-2">Closed</td> </tr> </tbody> </table> </div> </div> </body> </html>
**art studio
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6 text-center">Real Estate Agency</h1> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-gray-200"> <tr> <th class="px-4 py-2">Property</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">456 Oak St</td> <td class="border px-4 py-2">$600,000</td> <td class="border px-4 py-2">4</td> </tr> <tr class="bg-white"> <td class="border px-4 py-2">789 Maple St</td> <td class="border px-4 py-2">$700,000</td> <td class="border px-4 py-2">5</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </div> </body> </html>
**real estate agency
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-12"> <h1 class="text-3xl font-bold mb-6 text-center">Fitness Studio Schedule</h1> <div class="overflow-x-auto"> <table class="w-full text-left"> <thead class="bg-gray-200"> <tr> <th class="px-4 py-2">Day</th> <th class="px-4 py-2">Time</th> <th class="px-4 py-2">Class</th> <th class="px-4 py-2">Instructor</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Monday</td> <td class="border px-4 py-2">6:00 AM - 7:00 AM</td> <td class="border px-4 py-2">Yoga</td> <td class="border px-4 py-2">John Doe</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Tuesday</td> <td class="border px-4 py-2">7:00 AM - 8:00 AM</td> <td class="border px-4 py-2">Pilates</td> <td class="border px-4 py-2">Jane Doe</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </div> </body> </html>
**fitness studio
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Firm Information</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-green-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> <th class="px-4 py-2">Phone</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">CEO</td> <td class="border px-4 py-2">john.doe@architecture.com</td> <td class="border px-4 py-2">123-456-7890</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Architect</td> <td class="border px-4 py-2">jane.doe@architecture.com</td> <td class="border px-4 py-2">123-456-7891</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
**architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Children's Clothing</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-yellow-500 text-white"> <th class="px-4 py-2">Product Name</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Availability</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">T-Shirt</td> <td class="border px-4 py-2">$10</td> <td class="border px-4 py-2">In Stock</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jeans</td> <td class="border px-4 py-2">$20</td> <td class="border px-4 py-2">Out of Stock</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
e-commerce store for children's clothing
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Real Estate Listings</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-yellow-500 text-white"> <th class="px-4 py-2">Address</th> <th class="px-4 py-2">Price</th> <th class="px-4 py-2">Bedrooms</th> <th class="px-4 py-2">Bathrooms</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">123 Main St</td> <td class="border px-4 py-2">$500,000</td> <td class="border px-4 py-2">3</td> <td class="border px-4 py-2">2</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
real estate agency site
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <table class="w-full text-left table-auto"> <thead> <tr> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Office</th> <th class="px-4 py-2">Age</th> <th class="px-4 py-2">Start date</th> <th class="px-4 py-2">Salary</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Tiger Nixon</td> <td class="border px-4 py-2">System Architect</td> <td class="border px-4 py-2">Edinburgh</td> <td class="border px-4 py-2">61</td> <td class="border px-4 py-2">2011/04/25</td> <td class="border px-4 py-2">$320,800</td> </tr> <!-- Repeat the above row for 9 more times --> <tr class="bg-white"> <td class="border px-4 py-2">Garrett Winters</td> <td class="border px-4 py-2">Accountant</td> <td class="border px-4 py-2">Tokyo</td> <td class="border px-4 py-2">63</td> <td class="border px-4 py-2">2011/07/25</td> <td class="border px-4 py-2">$170,750</td> </tr> <!-- Repeat the above row for 8 more times --> <!-- ... --> </tbody> </table> </div> </body> </html>
technology startup website
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Educational Institution</h1> <table class="table-auto w-full"> <thead> <tr> <th class="px-4 py-2">Course Name</th> <th class="px-4 py-2">Duration</th> <th class="px-4 py-2">Fee</th> <th class="px-4 py-2">Teacher</th> </tr> </thead> <tbody> <tr> <td class="border px-4 py-2">Mathematics</td> <td class="border px-4 py-2">2 Years</td> <td class="border px-4 py-2">$1000</td> <td class="border px-4 py-2">John Doe</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
educational institution
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Nonprofit Organization</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-red-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">Director</td> <td class="border px-4 py-2">john.doe@example.com</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Doe</td> <td class="border px-4 py-2">Secretary</td> <td class="border px-4 py-2">jane.doe@example.com</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
nonprofit organization
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Architecture Firm Information</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-pink-500 text-white"> <th class="px-4 py-2">Name</th> <th class="px-4 py-2">Position</th> <th class="px-4 py-2">Email</th> <th class="px-4 py-2">Phone</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">John Doe</td> <td class="border px-4 py-2">CEO</td> <td class="border px-4 py-2">john.doe@architecture.com</td> <td class="border px-4 py-2">123-456-7890</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Jane Smith</td> <td class="border px-4 py-2">Architect</td> <td class="border px-4 py-2">jane.smith@architecture.com</td> <td class="border px-4 py-2">123-456-7891</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
architecture firm
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Art Gallery</h1> <table class="w-full text-left table-auto"> <thead> <tr class="bg-gray-200"> <th class="px-4 py-2">Artist</th> <th class="px-4 py-2">Title</th> <th class="px-4 py-2">Year</th> </tr> </thead> <tbody> <tr class="bg-white"> <td class="border px-4 py-2">Pablo Picasso</td> <td class="border px-4 py-2">Guernica</td> <td class="border px-4 py-2">1937</td> </tr> <tr class="bg-gray-100"> <td class="border px-4 py-2">Vincent van Gogh</td> <td class="border px-4 py-2">The Starry Night</td> <td class="border px-4 py-2">1889</td> </tr> <!-- Add more rows as needed --> </tbody> </table> </div> </body> </html>
art gallery