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="flex flex-col items-center justify-center h-screen"> <h1 class="text-4xl font-bold text-center text-gray-800">Fashion Brand</h1> <p class="mt-4 text-lg text-center text-gray-600"> Fashion Brand is a leading fashion brand that offers a wide range of high-quality, stylish clothing and accessories. Our collections are designed to reflect the latest fashion trends and are made from high-quality materials. We are committed to providing our customers with the best possible shopping experience and we strive to make our collections accessible to all. </p> <div class="mt-8"> <img src="https://source.unsplash.com/random/300x200/?fashion" alt="Fashion Brand" class="rounded"> </div> <div class="mt-8"> <nav class="flex justify-center space-x-4"> <a href="#" class="px-4 py-2 text-white bg-gray-500 rounded hover:bg-gray-600">Home</a> <a href="#" class="px-4 py-2 text-white bg-gray-500 rounded hover:bg-gray-600">About</a> <a href="#" class="px-4 py-2 text-white bg-gray-500 rounded hover:bg-gray-600">Contact</a> </nav> </div> </div> </body> </html>
Fashion Brand: A visually stunning layout with a full-width, rotating image carousel showcasing their latest collections, a bold, center-aligned logo, and a bottom navigation menu. The color palette is inspired by the latest fashion trends.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Restaurant Chain</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#location" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Location </a> <a href="#menu" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Menu </a> <a href="#order" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Order Online </a> </div> </div> </nav> <main class="container mx-auto px-4 py-8"> <!-- Your content here --> </main> <footer class="bg-gray-800 text-white p-6"> <div class="flex items-center justify-between flex-wrap"> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#" class="block mt-4 lg:inline-block lg:mt-0 text-gray-400 hover:text-white mr-4"> Facebook </a> <a href="#" class="block mt-4 lg:inline-block lg:mt-0 text-gray-400 hover:text-white mr-4"> Twitter </a> <a href="#" class="block mt-4 lg:inline-block lg:mt-0 text-gray-400 hover:text-white"> Instagram </a> </div> </div> <div class="text-sm text-gray-400"> Contact: info@restaurantchain.com </div> </div> </footer> </body> </html>
Restaurant Chain: A design with a mouth-watering header image of a popular dish, a top navigation menu with pages for location, menu, and order online. The footer displays social media icons, a newsletter sign-up form, and contact information.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Consulting Firm</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Home </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> About </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Contact </a> </div> </div> </nav> <div class="container mx-auto"> <section class="flex flex-col md:flex-row"> <div class="md:w-1/2 p-4"> <h2 class="text-3xl font-bold">About Us</h2> <p class="mt-4"> At Consulting Firm, we are dedicated to providing high-quality consulting services to help our clients achieve their business goals. Our team of experienced professionals is committed to delivering innovative solutions that meet the unique needs of each client. We believe in the power of collaboration and strive to create a positive work environment that fosters creativity and innovation. </p> </div> <div class="md:w-1/2 p-4"> <h2 class="text-3xl font-bold">Our Services</h2> <p class="mt-4"> Our services include strategic planning, business development, financial analysis, and more. We work closely with our clients to understand their business needs and provide customized solutions that help them achieve their goals. </p> </div> </section> </div> </body> </html>
Consulting Firm: A clean, professional design with a full-width image and a tagline, a left column for the main navigation menu, and a right column for featuring key staff members and their service offerings. A muted color palette evokes trust and expertise.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-white text-gray-800"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"> <img src="https://source.unsplash.com/random/300x200/?real-estate" alt="Real Estate Logo" class="w-10 h-10"> <span class="ml-3 text-xl">Real Estate Agency</span> </a> <nav class="md:ml-auto flex flex-wrap items-center text-base justify-center"> <a href="#" class="mr-5 hover:text-gray-900">Home</a> <a href="#" class="mr-5 hover:text-gray-900">Properties</a> <a href="#" class="mr-5 hover:text-gray-900">About Us</a> <a href="#" class="mr-5 hover:text-gray-900">Contact Us</a> </nav> </div> </header> <main class="container mx-auto px-4 py-8"> <p class="text-lg">Welcome to our Real Estate Agency, your one-stop destination for all your property needs. We are a team of dedicated professionals who are committed to providing you with the best service possible. Whether you're looking for a new home, a rental property, or a commercial space, we have got you covered. Our properties are located in various parts of the city, ensuring you find the perfect place to call home. We also offer a wide range of amenities and services to make your stay more comfortable and enjoyable. Contact us today to schedule a visit or to learn more about our properties.</p> </main> <footer class="bg-white text-gray-800 py-8"> <div class="container mx-auto px-4"> <div class="flex flex-wrap"> <div class="w-full md:w-1/2"> <h2 class="title-font font-medium text-lg mb-4">Contact Us</h2> <p class="leading-relaxed">123 Main Street<br>City, State 12345<br>Phone: (123) 456-7890<br>Email: info@realestateagency.com</p> </div> <div class="w-full md:w-1/2"> <h2 class="title-font font-medium text-lg mb-4">Social Media</h2> <div class="flex"> <a href="#" class="mr-4">Facebook</a> <a href="#" class="mr-4">Twitter</a> <a href="#">Instagram</a> </div> </div> </div> </div> </footer> </body> </html>
Real Estate Agency: A user-friendly design with a header featuring a property image and search functionality, a top navigation menu with links to the various property listings. The page includes a grid layout for listing images, and a footer with contact information and social media icons.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-cover bg-center h-screen" style="background-image: url('https://source.unsplash.com/random/1600x900/?education')"> <div class="container mx-auto px-6 md:px-12 relative z-10 flex items-center h-full"> <div class="w-full"> <div class="flex flex-col items-center justify-center h-full"> <img src="https://source.unsplash.com/random/300x300/?logo" alt="Logo" class="w-1/3 md:w-1/6 mb-10"> <nav class="flex items-center justify-center w-full"> <a href="#" class="text-white px-3 py-2 rounded mx-2">Courses</a> <a href="#" class="text-white px-3 py-2 rounded mx-2">Pricing</a> <a href="#" class="text-white px-3 py-2 rounded mx-2">About</a> </nav> </div> </div> </div> </header> <section class="container mx-auto px-6 md:px-12 py-10"> <h2 class="text-4xl text-center font-bold mb-10">About Us</h2> <p class="text-lg text-center mb-10"> At our education platform, we believe that education is the key to unlocking a brighter future. We are committed to providing high-quality, affordable education to all. Our courses are designed to help you reach your full potential, no matter where you are in your career. Whether you're just starting out or looking to advance your skills, we have something for everyone. </p> </section> </body> </html>
Education Platform: A design with a wide, hero image, a centered logo, and a top navigation menu featuring links for courses, pricing, and about the company. The site includes a feature section where students can share testimonials and success stories. A warm, approachable color palette is used to inspire confidence and engagement.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex items-center justify-between"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="h-10"> <nav> <ul class="flex space-x-4"> <li><a href="#vacation-packages" class="text-gray-600 hover:text-gray-900">Vacation Packages</a></li> <li><a href="#destinations" class="text-gray-600 hover:text-gray-900">Destinations</a></li> <li><a href="#customer-reviews" class="text-gray-600 hover:text-gray-900">Customer Reviews</a></li> </ul> </nav> </header> <main class="container mx-auto p-4"> <section id="vacation-packages" class="my-8"> <h2 class="text-2xl font-bold mb-4">Vacation Packages</h2> <!-- Add your vacation packages here --> </section> <section id="destinations" class="my-8"> <h2 class="text-2xl font-bold mb-4">Destinations</h2> <!-- Add your destinations here --> </section> <section id="customer-reviews" class="my-8"> <h2 class="text-2xl font-bold mb-4">Customer Reviews</h2> <!-- Add your customer reviews here --> </section> </main> <footer class="bg-white p-4 text-center text-gray-600"> <p>© 2022 Travel Agency. All rights reserved.</p> </footer> </body> </html>
Travel Agency: A visually immersive design with high-resolution images, a center-aligned logo, and a top navigation menu with links for vacation packages, destinations, and customer reviews. The design includes scrolling sections for showcasing destinations and highlighting the latest discount offers.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-red-500 text-white p-4 flex justify-between items-center"> <h1 class="text-2xl font-bold">Gaming Company</h1> <nav> <ul class="flex space-x-4"> <li><a href="#" class="hover:underline">Games</a></li> <li><a href="#" class="hover:underline">News</a></li> <li><a href="#" class="hover:underline">Community</a></li> </ul> </nav> </header> <main class="container mx-auto p-4"> <section class="my-8"> <h2 class="text-3xl font-bold mb-4">Welcome to Gaming Company</h2> <p class="text-lg"> We are a leading provider of innovative and exciting gaming experiences. Our mission is to bring the joy of gaming to everyone, no matter where they are. We believe in the power of games to inspire, engage, and connect people from all walks of life. </p> </section> <section class="my-8"> <h2 class="text-3xl font-bold mb-4">Our Games</h2> <p class="text-lg"> At Gaming Company, we are constantly working on new and exciting games. From fast-paced action to relaxing puzzle games, we have something for everyone. Check out our latest releases and stay tuned for future updates. </p> </section> <section class="my-8"> <h2 class="text-3xl font-bold mb-4">Join Our Community</h2> <p class="text-lg"> We believe in the power of community. That's why we have a vibrant and active community of gamers who are always ready to share their experiences, ask questions, and help each other out. Join us today and become a part of our community. </p> </section> </main> </body> </html>
Gaming Company: A modern, vibrant design with a bold, center-aligned logo and a top navigation menu for games, news, and community. The site features a scrolling banner for displaying game trailers, and a footer for social media links and contact information.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-sans leading-normal tracking-normal"> <header class="bg-cover bg-center h-screen" style="background-image: url('https://source.unsplash.com/random/1600x900/?nature')"> <div class="container mx-auto px-6 md:px-12 relative z-10 flex items-center h-full"> <div class="w-full"> <img src="https://source.unsplash.com/random/200x200/?logo" alt="Logo" class="mx-auto"> <nav class="flex justify-center mt-8"> <a href="#" class="px-4 py-2 text-white hover:text-gray-300">About</a> <a href="#" class="px-4 py-2 text-white hover:text-gray-300">Get Involved</a> <a href="#" class="px-4 py-2 text-white hover:text-gray-300">Stories</a> </nav> </div> </div> </header> <main class="container mx-auto px-6 md:px-12 py-12"> <div class="flex flex-wrap -mx-2"> <div class="w-full md:w-1/2 px-2"> <h2 class="text-2xl font-bold mb-4">Recent Projects</h2> <!-- Add your recent projects here --> </div> <div class="w-full md:w-1/2 px-2"> <h2 class="text-2xl font-bold mb-4">Fundraising Events</h2> <!-- Add your fundraising events here --> </div> </div> </main> <footer class="bg-gray-800 text-white py-12"> <div class="container mx-auto px-6 md:px-12"> <div class="flex flex-wrap -mx-2"> <div class="w-full md:w-1/2 px-2"> <h2 class="text-2xl font-bold mb-4">Donate</h2> <!-- Add your donate options here --> </div> <div class="w-full md:w-1/2 px-2"> <h2 class="text-2xl font-bold mb-4">Volunteer</h2> <!-- Add your volunteer options here --> </div> </div> <div class="mt-8"> <h2 class="text-2xl font-bold mb-4">Follow Us</h2> <!-- Add your social media links here --> </div> </div> </footer> </body> </html>
Non-profit Organization: A design with a header image, a centered logo, and a top navigation menu for About, Get Involved, and Stories. A two-column layout showcases recent projects and fundraising events, and a footer includes links for donating, volunteering, and social media.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-center"> <img src="https://source.unsplash.com/random/300x100/?construction" alt="Construction Company Logo" class="h-10"> </header> <nav class="bg-pink-500 text-white p-4"> <ul class="flex justify-center space-x-4"> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Projects</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <section class="bg-cover bg-center h-96" style="background-image: url('https://source.unsplash.com/random/1600x900/?construction')"> <!-- Full-width header image of a construction project --> </section> <footer class="bg-pink-500 text-white p-4"> <div class="flex justify-between"> <div> <p>Construction Company</p> <p>123 Main St, Anytown, USA</p> <p>Phone: (123) 456-7890</p> <p>Email: info@constructioncompany.com</p> </div> <div> <p>Follow us on:</p> <!-- Social media icons --> </div> <div> <!-- Newsletter sign-up form --> </div> </div> </footer> </body> </html>
Construction Company: A professional design with a centered logo, a top navigation menu, and a full-width header image of a construction project. An image carousel showscasing completed projects is placed above a grid layout for displaying client testimonials and team member profiles. A footer includes contact information, social media icons, and a Newsletter sign-up form.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-200"> <header class="bg-pink-500 text-white p-4"> <h1 class="text-2xl font-bold">Technology Company</h1> <nav class="hidden md:block"> <ul class="flex space-x-4"> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <button class="md:hidden"> <!-- Hamburger icon --> </button> </header> <main class="flex flex-col items-center justify-center h-screen"> <img src="https://source.unsplash.com/random/1200x800/?technology" alt="Hero Image" class="w-full h-full object-cover"> <h2 class="text-4xl font-bold mt-8">Welcome to our Technology Company</h2> <p class="text-lg mt-4">We are a leading provider of cutting-edge technology solutions. Our team of experts is dedicated to delivering innovative and efficient solutions to meet your business needs. Whether you're looking for a new software, a custom hardware solution, or a complete IT infrastructure, we've got you covered.</p> </main> </body> </html>
Technology Company: A minimalistic design with a large, central hero image and a navigational menu hidden behind a hamburger icon. The color scheme consists of shades of gray and blue. A dynamic animation effects add an interactive touch.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-white"> <div class="flex flex-col items-center justify-center h-screen"> <h1 class="text-4xl font-bold text-center text-gray-800">Welcome to Our Fashion Retailer</h1> <p class="mt-4 text-lg text-center text-gray-600"> We are a premier fashion retailer dedicated to providing our customers with the latest and greatest in high-quality apparel, accessories, and footwear. Our mission is to make fashion accessible and stylish for everyone, no matter their budget or style preference. We believe in a world where fashion is not just about what you wear, but also about how you feel and express yourself. We are committed to creating a sustainable and ethical business that respects our planet and our customers. </p> <button class="mt-8 px-4 py-2 text-white bg-green-500 rounded hover:bg-green-600">Shop Now</button> </div> </body> </html>
Fashion Retailer: A grid layout featuring high-quality product images with a white background. A colored band runs horizontally across the top, showcasing the brand logo and the primary call-to-action.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="relative flex flex-col min-h-screen overflow-hidden"> <div class="relative z-10 flex flex-col flex-1 pt-6 pb-6 md:pb-8"> <header class="flex items-center justify-between flex-wrap bg-white p-6"> <div class="flex items-center flex-shrink-0 mr-6"> <span class="font-semibold text-xl tracking-tight">Creative Agency</span> </div> <div class="block md:hidden"> <button id="menu-button" class="flex items-center px-3 py-2 border rounded text-teal-200 border-teal-400 hover:text-white hover:border-white"> <svg class="fill-current h-3 w-3" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><title>Menu</title><path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z"/></svg> </button> </div> </header> <main class="flex-1 relative z-0 overflow-y-auto focus:outline-none md:py-6"> <div class="opacity-75 fixed pin bg-no-repeat bg-center bg-cover" style="background-image: url('https://source.unsplash.com/random/1600x900/?creative');"> <div class="inset-0 bg-black opacity-50 absolute"></div> <div class="container mx-auto px-6 md:px-12 relative z-10 flex items-center py-32 xl:py-40"> <div class="w-full lg:w-3/4"> <h1 class="my-4 text-3xl md:text-5xl text-white leading-tight"> We are Creative Agency </h1> <p class="leading-normal text-white text-2xl md:text-2xl mb-8"> We are a creative agency specializing in web design, branding, and digital marketing. </p> </div> </div> </div> </main> </div> </div> </body> </html>
Creative Agency: A full-screen video background with an opaque overlay displaying the company name and tagline. A hidden sidebar menu reveals as you hover over the hamburger icon. The color palette is bright and playful.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-sans leading-normal tracking-normal"> <header class="bg-white text-center"> <div class="container mx-auto"> <img src="https://source.unsplash.com/random/300x200/?architecture" alt="Logo" class="w-1/2 mx-auto"> <nav class="flex items-center justify-between flex-wrap p-6"> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Home </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> About </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Contact </a> </div> </div> </nav> </div> </header> <main class="container mx-auto"> <section class="py-10"> <h1 class="text-4xl text-center">Welcome to Our Architecture Firm</h1> <p class="text-xl text-center mt-5"> We are a leading architecture firm specializing in creating unique and innovative designs. Our team of experienced architects and designers work closely with our clients to understand their needs and translate them into beautiful, functional spaces. We believe in the power of design to transform the world around us and we are committed to making that a reality. </p> </section> </main> </body> </html>
Architecture Firm: A grid layout that showcases images of buildings with text overlays providing information about each project. A full-width image header with a centered logo and minimalist menu helps convey a professional image.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-white"> <header class="bg-red-500 text-white p-4"> <h1 class="text-2xl font-bold">Software Development Company</h1> <nav class="mt-4"> <a href="#home" class="mr-4">Home</a> <a href="#about" class="mr-4">About</a> <a href="#contact" class="mr-4">Contact</a> </nav> </header> <main> <section id="home" class="py-10"> <h2 class="text-3xl font-bold mb-4">Welcome to Our Software Development Company</h2> <p class="text-lg mb-4">We specialize in developing innovative software solutions.</p> <a href="#contact" class="bg-red-500 text-white px-4 py-2 rounded">Contact Us</a> </section> <section id="about" class="py-10"> <h2 class="text-3xl font-bold mb-4">About Us</h2> <p class="text-lg mb-4">We are a team of experienced software developers.</p> </section> <section id="contact" class="py-10"> <h2 class="text-3xl font-bold mb-4">Contact Us</h2> <p class="text-lg mb-4">Get in touch with us today.</p> <form> <input type="text" placeholder="Your name" class="border p-2 mb-4"> <input type="email" placeholder="Your email" class="border p-2 mb-4"> <textarea placeholder="Your message" class="border p-2 mb-4"></textarea> <button type="submit" class="bg-red-500 text-white px-4 py-2 rounded">Send</button> </form> </section> </main> <footer class="bg-red-500 text-white p-4 text-center"> <p>&copy; 2022 Software Development Company</p> </footer> </body> </html>
Software Development Company: A multi-page design with each page focusing on a single software solution. A hero image sits at the top, with a call-to-action to "Contact Us" or "Try It Out" placed prominently. The color scheme is based on the software's branding.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-green-100"> <header class="bg-green-500 text-white p-4 flex justify-between items-center"> <div> <h1 class="text-2xl font-bold">Florist</h1> <p class="text-sm">Welcome to our Florist, where we specialize in creating beautiful and unique arrangements for any occasion.</p> </div> <div> <input type="text" placeholder="Search..." class="p-2 rounded-md"> </div> </header> <main class="p-4"> <h2 class="text-xl font-bold mb-4">Featured Arrangements</h2> <div class="flex overflow-x-auto space-x-4 pb-4"> <div class="bg-white rounded-lg shadow-md p-4"> <img src="https://source.unsplash.com/random/300x200/?flowers" alt="Flowers" class="w-full h-64 object-cover"> <h3 class="text-lg font-bold mt-2">Flowers</h3> <p class="text-sm">A beautiful bouquet of flowers for any occasion.</p> </div> <!-- Add more arrangements here --> </div> </main> </body> </html>
Florist: A full-width, scrolling carousel displaying high-resolution images of different arrangements. The header contains the logo, primary call-to-action, and a search bar for specific blooms. A soothing and earthy color palette is used.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Travel Agency</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Home </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Destinations </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> About Us </a> </div> <div> <a href="#responsive-header" class="inline-block text-sm px-4 py-2 leading-none border rounded text-white border-white hover:border-transparent hover:text-teal-500 hover:bg-white mt-4 lg:mt-0">Book Now</a> </div> </div> </nav> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 text-xl text-gray-800 leading-normal" style="font-family: 'Lucida Console', Monaco, monospace;"> <p class="text-base">Welcome to our travel agency, your one-stop destination for all your travel needs. We specialize in creating unforgettable experiences for our clients. Whether you're looking for a romantic getaway, a family vacation, or a business trip, we've got you covered. Our team of experienced travel agents are dedicated to providing you with the best service and advice. So why wait? Book your next adventure today and let us help you create memories that will last a lifetime.</p> </div> </div> </body> </html>
Travel Agency: A multi-page design with each page dedicated to a specific destination. A bold header showcases the company logo, a menu, and a prominent call-to-action to "Book Now." A colorful and vibrant color palette is used to capture visitors' attention.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-pink-100"> <header class="relative"> <img src="https://source.unsplash.com/random/1600x400/?it" alt="Header Image" class="w-full"> <div class="absolute inset-0 flex items-center justify-center"> <img src="https://source.unsplash.com/random/200x200/?logo" alt="Logo" class="h-16"> </div> </header> <nav class="bg-pink-500 text-white text-center py-4"> <ul class="flex justify-center space-x-8"> <li><a href="#" class="hover:text-pink-200">Home</a></li> <li><a href="#" class="hover:text-pink-200">Services</a></li> <li><a href="#" class="hover:text-pink-200">About Us</a></li> <li><a href="#" class="hover:text-pink-200">Contact</a></li> </ul> </nav> <main class="max-w-screen-lg mx-auto p-4"> <section class="my-8"> <h2 class="text-2xl text-center">Welcome to Our IT Services Company</h2> <p class="text-center mt-4"> We are a trusted and reliable IT services company dedicated to providing top-notch solutions for your business needs. With our team of experienced professionals, we ensure that your IT infrastructure is always up-to-date and secure. We offer a wide range of services, from software development and IT consulting to network setup and maintenance. Our goal is to help you grow and succeed in the digital world. </p> <button class="block mx-auto mt-8 bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-4 rounded"> Get Started </button> </section> <section class="my-8"> <h2 class="text-2xl text-center">Our Services</h2> <!-- Add your services here --> </section> </main> </body> </html>
IT Services Company: A clean and modern design with a full-width header image, a centered logo, and a left-aligned navigation menu. The colors are dominated by shades of blue and green, symbolizing trust and growth. The homepage includes a prominent call-to-action (CTA) button and sections for services and client testimonials.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-red-500 text-white"> <div class="container mx-auto px-4 py-8"> <div class="flex justify-center items-center mb-8"> <img src="https://source.unsplash.com/random/300x200/?food" alt="Logo" class="w-16 h-16 mr-4"> <h1 class="text-4xl font-bold">Food Delivery Service</h1> </div> <nav class="flex justify-center mb-8"> <ul class="flex space-x-4"> <li><a href="#" class="text-xl hover:text-red-300">Home</a></li> <li><a href="#" class="text-xl hover:text-red-300">Menu</a></li> <li><a href="#" class="text-xl hover:text-red-300">About Us</a></li> <li><a href="#" class="text-xl hover:text-red-300">Contact</a></li> </ul> </nav> <div class="flex justify-center items-center mb-8"> <div class="bg-white text-red-500 p-4 rounded"> <h2 class="text-2xl font-bold mb-2">Promo Code</h2> <p class="text-lg">Get a 10% discount with the code: FOOD10</p> </div> </div> </div> </body> </html>
Food Delivery Service: A minimalist design with a centered logo, a simple horizontal navigation menu, and a prominent promo code box. The color palette features a combination of red and white, resembling a takeout bag or delivery box. The homepage includes featured dishes, ratings, and reviews from other customers.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-800 text-white"> <header class="bg-red-900 p-4 flex justify-between items-center"> <img src="https://source.unsplash.com/random/100x50/?law" alt="Law Firm Logo" class="h-10"> <nav> <ul class="flex space-x-4"> <li><a href="#areas-of-practice" class="hover:text-red-300">Areas of Practice</a></li> <li><a href="#attorney-profiles" class="hover:text-red-300">Attorney Profiles</a></li> <li><a href="#client-testimonials" class="hover:text-red-300">Client Testimonials</a></li> </ul> </nav> </header> <main class="p-4"> <section id="areas-of-practice" class="mb-4"> <h2 class="text-2xl mb-2">Areas of Practice</h2> <p>We provide legal services in various areas such as criminal law, civil law, family law, and business law. Our experienced attorneys are committed to providing the best legal advice and representation to our clients.</p> </section> <section id="attorney-profiles" class="mb-4"> <h2 class="text-2xl mb-2">Attorney Profiles</h2> <p>Our team of attorneys are highly skilled and experienced in their respective fields. They have a proven track record of success in their respective areas of practice.</p> </section> <section id="client-testimonials"> <h2 class="text-2xl mb-2">Client Testimonials</h2> <p>We are proud of the success of our clients. Here are some testimonials from our satisfied clients.</p> </section> </main> </body> </html>
Law Firm: A professional design with a header featuring a large firm logo and a simple navigation menu to the right. The color palette is dominated by deep blues and grays, symbolizing trust, integrity, and wisdom. The homepage includes sections for areas of practice, attorney profiles, and client testimonials.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-blue-100"> <header class="bg-red-600 text-white p-4"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Institution Logo" class="h-10"> <nav class="flex justify-end"> <a href="#" class="px-4">Home</a> <a href="#" class="px-4">Programs</a> <a href="#" class="px-4">About Us</a> <a href="#" class="px-4">Contact</a> </nav> </header> <main class="container mx-auto p-4"> <section class="my-8"> <h2 class="text-2xl mb-4">Welcome to Our Institution</h2> <p class="text-lg"> At our institution, we are committed to providing a high-quality education that prepares students for success in their chosen field. Our experienced faculty and state-of-the-art facilities ensure that our students receive the best possible education. We offer a wide range of programs, from online degrees to in-person certificates, and everything in between. </p> </section> <section class="my-8"> <h2 class="text-2xl mb-4">Our Programs</h2> <p class="text-lg"> We offer a variety of programs to meet the needs of our students. Whether you're interested in a degree in computer science, a certificate in business, or a certificate in graphic design, we have a program that's right for you. Our programs are designed to provide a comprehensive education that prepares students for a career in their chosen field. </p> </section> <section class="my-8"> <h2 class="text-2xl mb-4">Contact Us</h2> <p class="text-lg"> We'd love to hear from you. Please contact us at the following address: </p> <address class="not-italic"> 123 Main St<br> Anytown, USA 12345<br> Phone: (123) 456-7890<br> Email: info@institution.com </address> </section> </main> </body> </html>
Education Institution: A clean and straightforward design with a header featuring the institution logo and a horizontal navigation menu. The color palette includes the institution's brand colors, like shades of blue and red. The homepage includes sections for program descriptions, student testimonials, and contact information.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-green-100"> <header class="bg-blue-500 text-white p-4 flex justify-between items-center"> <h1 class="text-2xl font-bold">Home Improvement Store</h1> <nav> <ul class="flex space-x-4"> <li><a href="#" class="hover:underline">Home</a></li> <li><a href="#" class="hover:underline">Products</a></li> <li><a href="#" class="hover:underline">About</a></li> <li><a href="#" class="hover:underline">Contact</a></li> </ul> </nav> </header> <main class="p-4"> <h2 class="text-xl font-bold mb-4">Welcome to our Home Improvement Store</h2> <p class="mb-4"> At our Home Improvement Store, we specialize in providing high-quality home improvement products and services. We believe in creating a home that is both functional and beautiful. Our products are designed to enhance the functionality of your home, while our services help you create a space that is perfect for your lifestyle. </p> <p> We are committed to providing our customers with the best possible service. We understand that every home is unique, and we strive to make our products and services as customizable as possible to meet your specific needs. Whether you are looking for a new kitchen countertop, a new bathroom vanity, or a new home theater system, we have the tools and knowledge to help you create the home of your dreams. </p> </main> </body> </html>
Home Improvement Store: A functional design with a header featuring the store logo and a navigation menu to the right. The color palette includes earthy tones like green, blue, and brown, symbolizing home and nature. The homepage includes sections for product categories, special deals, and customer reviews.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-900 text-white"> <header class="flex justify-center items-center h-screen"> <h1 class="text-4xl">Welcome to Tech Company</h1> </header> <main class="container mx-auto px-4 py-8"> <h2 class="text-2xl mb-4">About Us</h2> <p class="mb-4"> At Tech Company, we are dedicated to providing the best technology solutions for our clients. Our team of experts is committed to delivering high-quality, reliable, and innovative products and services. We are passionate about technology and are always looking for new ways to improve our offerings. </p> <h2 class="text-2xl mb-4">Our Services</h2> <p class="mb-4"> We offer a wide range of services including software development, web design, mobile app development, and more. Our team of experts is skilled in a variety of programming languages and technologies, allowing us to deliver solutions that meet the unique needs of each of our clients. </p> </main> </body> </html>
Tech Company: A sleek and futuristic layout with a full-screen background video, a centered logo, and a horizontal navigation menu. Clean lines and monochromatic color scheme.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 md:px-6 text-xl text-center text-gray-800"> <div class="flex flex-col sm:flex-row mt-10"> <div class="w-full sm:w-1/2 p-6"> <h1 class="text-4xl text-center text-indigo-500 font-bold">Creative Agency</h1> <p class="mt-6 text-base leading-relaxed text-gray-600"> At Creative Agency, we believe in the power of creativity to transform businesses and brands. We are a team of passionate designers, developers, and strategists who are dedicated to creating visually stunning and user-friendly websites. Our approach is playful, innovative, and results-driven. We work closely with our clients to understand their business, their target audience, and their unique brand voice. We believe in the power of design to tell a story, to make a connection, and to create a memorable experience. </p> <div class="mt-10"> <a href="#" class="text-white font-bold px-6 py-4 rounded bg-indigo-500 hover:bg-indigo-600">Get Started</a> </div> </div> <div class="w-full sm:w-1/2 p-6"> <img src="https://source.unsplash.com/random/300x200/?creative" class="w-full h-auto" alt="Creative Agency"> </div> </div> </div> </div> </body> </html>
Creative Agency: A playful and visually stimulating design with a diagonal grid pattern, a logo in the top left corner, and a call-to-action button prominently displayed. Bright and bold color palette.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-200"> <div class="flex justify-center items-center h-screen"> <div class="bg-white rounded-lg shadow-lg p-6 w-1/2"> <div class="flex justify-center"> <img src="https://source.unsplash.com/random/300x200/?law" alt="Law Firm Logo" class="h-32 w-32"> </div> <div class="mt-6"> <h1 class="text-center text-3xl font-bold">Welcome to Our Law Firm</h1> <p class="mt-4 text-lg text-gray-600"> At our law firm, we are committed to providing our clients with the highest level of service and expertise. Our team of experienced attorneys are dedicated to delivering personalized, effective legal solutions that meet the unique needs of each individual client. We understand that every case is unique, and we strive to provide a comprehensive approach to each situation. Whether you're in need of legal advice, representation in a court of law, or simply seeking legal counsel, we're here to help. </p> </div> <div class="mt-6 flex justify-center"> <div class="w-1/3 bg-green-200 rounded-lg p-4"> <h2 class="text-center text-xl font-bold">Contact Us</h2> <p class="mt-4 text-lg text-gray-600"> 123 Main St<br> Anytown, USA 12345<br> Phone: (123) 456-7890<br> Email: info@ourlawfirm.com </p> </div> <div class="w-2/3 ml-4 bg-green-200 rounded-lg p-4"> <h2 class="text-center text-xl font-bold">Practice Areas</h2> <p class="mt-4 text-lg text-gray-600"> We offer a wide range of legal services, including: <ul class="mt-2 text-lg text-gray-600 list-disc pl-4"> <li>Criminal Law</li> <li>Family Law</li> <li>Personal Injury Law</li> <li>Corporate Law</li> <li>Immigration Law</li> </ul> </p> </div> </div> </div> </div> </body> </html>
Law Firm: A professional and elegant design with a centered logo, a left sidebar for contact information and practice areas, and a subtle color scheme of blues and grays.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-200"> <div class="flex flex-col items-center justify-center h-screen"> <div class="flex flex-col items-center justify-center bg-white rounded-lg shadow-lg p-10"> <img src="https://source.unsplash.com/random/300x200/?real-estate" alt="Real Estate" class="w-64 h-64 object-cover rounded-full mb-5"> <h1 class="text-3xl font-bold mb-5">Welcome to Our Real Estate Agency</h1> <p class="text-center mb-5">At our Real Estate Agency, we are committed to providing our clients with the best possible service. We understand that buying or selling a home is a big decision, and we are here to help you every step of the way. We have a team of experienced real estate professionals who are dedicated to providing you with the information you need to make an informed decision.</p> <a href="#" class="bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded">Learn More</a> </div> </div> </body> </html>
Real Estate Agency: A spacious and organized design with a large central image, a centered logo, and a sidebar for property listings and search filters. Neutral and calming color scheme.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 md:px-6 text-xl text-center text-gray-800"> <div class="flex flex-col sm:flex-row mt-10"> <div class="w-full sm:w-1/2 p-6"> <img src="https://source.unsplash.com/random/300x200/?education" alt="Education Image" class="w-full h-64 object-cover object-center rounded"> </div> <div class="w-full sm:w-1/2 p-6"> <h3 class="text-3xl text-gray-800 font-bold leading-none mb-3">Education Institute</h3> <p class="text-gray-600 mb-8"> At our education institute, we are committed to providing a high-quality education that is both knowledgeable and engaging. We believe in the power of education to change lives and help individuals reach their full potential. Our curriculum is designed to meet the needs of today's rapidly changing world, with a focus on critical thinking, problem-solving, and creativity. We offer a variety of programs, from online degrees to in-person classes, to meet the needs of all learners. </p> <div class="flex justify-center"> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded"> Enroll Now </button> </div> </div> </div> </div> </div> </body> </html>
Education Institute: A knowledgeable and engaging design with a diagonal grid layout, a logo at the top, and a prominent call-to-action button for admissions or enrollment. A color palette inspired by academic regalia.
<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="flex flex-col items-center justify-center h-screen"> <img src="https://source.unsplash.com/random/300x200/?travel" alt="Travel Agency" class="w-full h-full object-cover"> <div class="absolute top-0 left-0 w-full h-full bg-black opacity-50"></div> <div class="relative z-10 text-white text-center"> <h1 class="text-4xl font-bold mb-4">Welcome to our Travel Agency</h1> <p class="text-lg">We are a travel agency that offers a wide range of services to make your travel dreams come true. From booking flights and hotels to organizing tours and activities, we are here to help you plan your next adventure.</p> </div> </div> </body> </html>
Travel Agency: A dreamy and adventurous design with a full-screen image of a scenic location, a centered logo, and a scrolling carousel of travel destinations. Vibrant and inviting color palette.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-purple-100"> <div class="flex flex-col items-center justify-center h-screen"> <img src="https://source.unsplash.com/random/300x200/?medical" alt="Medical Clinic" class="w-1/2"> <h1 class="text-4xl text-center text-purple-800">Welcome to Our Medical Clinic</h1> <p class="text-center text-purple-800"> At our clinic, we are committed to providing the highest quality of care to our patients. We offer a wide range of services, from primary care to specialty care, and we are dedicated to providing the most comprehensive and compassionate care possible. Our team of experienced doctors and staff are here to help you every step of the way. </p> <div class="flex flex-row mt-4"> <a href="#" class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded mr-2"> Services </a> <a href="#" class="bg-green-500 hover:bg-green-700 text-white font-bold py-2 px-4 rounded"> Appointment </a> </div> </div> </body> </html>
Medical Clinic: A trustworthy and informative design with a centered logo, a sidebar for appointment scheduling and services offered, and a clean color palette of greens and blues.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <nav class="bg-white p-6"> <!-- Menu bar --> <ul class="flex space-x-6"> <li><a href="#" class="text-gray-800 hover:text-gray-600">Home</a></li> <li><a href="#" class="text-gray-800 hover:text-gray-600">About</a></li> <li><a href="#" class="text-gray-800 hover:text-gray-600">Projects</a></li> <li><a href="#" class="text-gray-800 hover:text-gray-600">Contact</a></li> </ul> </nav> <div class="flex p-6"> <!-- Sidebar --> <div class="w-1/4 p-6"> <h2 class="text-2xl font-bold mb-4">About Us</h2> <p class="text-gray-600"> We are a leading architecture firm specializing in residential and commercial projects. Our team of experienced architects and designers work closely with our clients to create spaces that are not only beautiful but also functional and sustainable. </p> </div> <!-- Main content --> <div class="w-3/4 p-6"> <h1 class="text-3xl font-bold mb-4">Our Past Projects</h1> <!-- Masonry style grid --> <div class="grid grid-cols-2 gap-4"> <img src="https://source.unsplash.com/random/300x200/?architecture" alt="Architecture"> <img src="https://source.unsplash.com/random/300x200/?interior" alt="Interior"> <img src="https://source.unsplash.com/random/300x200/?exterior" alt="Exterior"> <img src="https://source.unsplash.com/random/300x200/?urban" alt="Urban"> </div> </div> </div> <footer class="bg-white p-6"> <!-- Contact form and newsletter sign-up --> <form class="mb-4"> <input type="email" placeholder="Enter your email" class="p-2 border border-gray-300 rounded"> <button type="submit" class="bg-red-500 text-white p-2 rounded">Subscribe</button> </form> <p class="text-gray-600">© 2022 Architecture Firm. All rights reserved.</p> </footer> </body> </html>
Architecture Firm: A grid-based layout featuring images of past projects in a masonry style, with a small menu bar at the top and a sidebar for about the company and contact information. A contact form and newsletter sign-up can be located at the footer.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-sans antialiased text-gray-900 leading-normal tracking-wider bg-cover bg-center" style="background-image: url('https://source.unsplash.com/random/1600x900/?healthcare');"> <header class="bg-gray-900 text-white p-4"> <h1 class="text-4xl">Healthcare Provider</h1> </header> <nav class="bg-gray-800 text-white p-4"> <ul class="flex space-x-4"> <li><a href="#services">Services</a></li> <li><a href="#testimonials">Testimonials</a></li> <li><a href="#insurance">Insurance Providers</a></li> </ul> </nav> <main class="max-w-4xl mx-auto p-4"> <section id="services" class="my-8"> <h2 class="text-2xl">Our Services</h2> <p>We provide a wide range of healthcare services to meet your needs. From primary care to specialty care, we have you covered.</p> </section> <section id="testimonials" class="my-8"> <h2 class="text-2xl">Patient Testimonials</h2> <p>Hear what our patients have to say about our services.</p> </section> <section id="insurance" class="my-8"> <h2 class="text-2xl">Insurance Providers</h2> <p>We are partnered with many insurance providers to ensure you get the care you need.</p> </section> </main> <footer class="bg-gray-900 text-white p-4"> <p>Phone: 123-456-7890</p> <ul class="flex space-x-4"> <li><a href="#">Privacy Policy</a></li> <li><a href="#">Terms of Service</a></li> </ul> </footer> </body> </html>
Healthcare Provider: A calming color palette with a large header image, a clear navigation menu, and a clean, easy-to-read layout with sections for services, patient testimonials, and insurance providers. The footer can include links to important pages and a phone number for appointments.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-cover bg-center h-screen" style="background-image: url('https://source.unsplash.com/random/1600x900/?food')"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Food Restaurant</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#menu" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Menu </a> <a href="#contact" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Contact </a> </div> </div> </nav> </header> <main class="container mx-auto px-4 py-8"> <section id="about"> <h2 class="text-3xl mb-4">About Us</h2> <p class="mb-4"> Welcome to Food Restaurant, where we serve the best food in town. Our dishes are made with the freshest ingredients and cooked to perfection. We are open 24/7, so come on in and enjoy a meal with us. </p> </section> <section id="menu"> <h2 class="text-3xl mb-4">Menu</h2> <p class="mb-4"> Our menu is constantly evolving to keep up with the latest trends in food. We offer a wide variety of dishes, from classic favorites to unique creations. </p> </section> <section id="contact"> <h2 class="text-3xl mb-4">Contact Us</h2> <p class="mb-4"> You can find us at 123 Main St, Anytown, USA. Our phone number is 555-123-4567 and our email is info@foodrestaurant.com. </p> </section> </main> <footer class="bg-gray-800 text-white p-4"> <div class="container mx-auto flex flex-col md:flex-row items-center"> <a class="flex title-font font-medium items-center text-white mb-4 md:mb-0"> <span class="ml-3 text-xl">Food Restaurant</span> </a> <nav class="md:mr-auto md:ml-4 md:py-1 md:pl-4 md:border-l md:border-gray-700 flex flex-wrap items-center text-base justify-center"> <a href="#menu" class="mr-5 hover:text-white">Menu</a> <a href="#contact" class="hover:text-white">Contact</a> </nav> </div> </footer> </body> </html>
Food Restaurant: A mouthwatering design with a large, appetizing image or video of a dish in the header, a clear menu bar at the top, and information about the restaurant's location, hours, and contact information. The footer can include links to the menu and online ordering system.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-yellow-500 text-white text-center py-16"> <h1 class="text-4xl">Welcome to Our Law Firm</h1> <p class="mt-4">We are a professional and trustworthy law firm with a clear, easy-to-navigate layout.</p> </header> <main class="max-w-5xl mx-auto py-8"> <section class="mb-8"> <h2 class="text-2xl mb-4">Our Practice Areas</h2> <p>We offer a wide range of legal services including criminal defense, family law, and business law.</p> </section> <section class="mb-8"> <h2 class="text-2xl mb-4">Our Team</h2> <p>Our team of experienced and skilled lawyers are dedicated to providing the best possible service to our clients.</p> </section> </main> <footer class="bg-yellow-500 text-white text-center py-8"> <p>Contact us at: info@ourlawfirm.com</p> <p>Subscribe to our newsletter:</p> <form> <input type="email" placeholder="Enter your email" class="px-4 py-2 mt-2"> <button type="submit" class="bg-white text-yellow-500 px-4 py-2 mt-2">Subscribe</button> </form> </footer> </body> </html>
Law Firm: A professional and trustworthy design with a clear, easy-to-navigate layout, a subtle color palette, and a focused layout showcasing the firm's practice areas and team members. The footer can include links to contact information, a blog, and a newsletter sign-up.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-white text-gray-800"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"> <span class="ml-3 text-xl">Education Institution</span> </a> <nav class="md:ml-auto flex flex-wrap items-center text-base justify-center"> <a href="#degree-programs" class="mr-5 hover:text-gray-900">Degree Programs</a> <a href="#student-resources" class="mr-5 hover:text-gray-900">Student Resources</a> <a href="#campus-events" class="mr-5 hover:text-gray-900">Campus Events</a> </nav> </div> </header> <main class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <section id="degree-programs" class="w-full md:w-1/2"> <h2>Degree Programs</h2> <p>At our institution, we offer a wide range of degree programs. Our curriculum is designed to prepare students for a career in the 21st century.</p> </section> <section id="student-resources" class="w-full md:w-1/2"> <h2>Student Resources</h2> <p>We provide a variety of resources to help our students succeed. These resources include tutoring, study guides, and online learning tools.</p> </section> <section id="campus-events" class="w-full md:w-1/2"> <h2>Campus Events</h2> <p>We host a variety of events throughout the year. These events provide opportunities for students to engage with their peers and learn from industry professionals.</p> </section> </main> <footer class="bg-white"> <div class="container mx-auto px-8"> <div class="w-full flex flex-col md:flex-row py-6"> <div class="flex-1 mb-6"> <a href="#" class="text-gray-500 hover:text-gray-900">Home</a> </div> <div class="flex-1 mb-6"> <a href="#" class="text-gray-500 hover:text-gray-900">About</a> </div> <div class="flex-1 mb-6"> <a href="#" class="text-gray-500 hover:text-gray-900">Contact</a> </div> </div> </div> </footer> </body> </html>
Education Institution: A clean and informative design with a full-screen image or video of campus life, a prominent navigation menu, and a clear, easy-to-understand layout showcasing degree programs, student resources, and campus events. The footer can include links to important pages, student testimonials, and a newsletter sign-up.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-green-500 text-white text-center py-12"> <h1 class="text-4xl">Non-Profit Organization</h1> <p class="mt-4">A compassionate and inspiring design with a clear, easy-to-navigate layout.</p> <button class="mt-6 bg-white text-green-500 hover:bg-green-700 hover:text-white font-bold py-2 px-4 rounded"> Donate Now </button> </header> <main class="container mx-auto px-4 py-12"> <section class="mb-12"> <h2 class="text-2xl mb-4">About Us</h2> <p>We are a non-profit organization dedicated to making a difference in the world. Our mission is to provide hope and optimism to those in need.</p> </section> <section> <h2 class="text-2xl mb-4">Our Impact</h2> <p>We have made a significant impact in our community. We have provided food to thousands of people, and we have helped to build homes for families in need.</p> </section> </main> <footer class="bg-green-500 text-white text-center py-6"> <p>Follow us on social media</p> <div class="flex justify-center mt-4"> <a href="#" class="text-white hover:text-green-300 mx-2">Facebook</a> <a href="#" class="text-white hover:text-green-300 mx-2">Twitter</a> <a href="#" class="text-white hover:text-green-300 mx-2">Instagram</a> </div> </footer> </body> </html>
Non-Profit Organization: A compassionate and inspiring design with a clear, easy-to-navigate layout, a prominent call-to-action button, and a color palette that conveys a sense of hope and optimism. The website can include sections for donations, volunteer opportunities, and information about the organization's mission and impact. The footer can include links to social media pages and a newsletter sign-up.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="flex flex-col min-h-screen"> <header class="bg-white shadow"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a href="/" class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"> <img src="https://source.unsplash.com/random/100x100/?logo" alt="Logo" class="w-10 h-10"> <span class="ml-3 text-xl">Restaurant Name</span> </a> <nav class="md:ml-auto flex flex-wrap items-center text-base justify-center"> <a href="#about" class="mr-5 hover:text-gray-900">About Us</a> <a href="#menu" class="mr-5 hover:text-gray-900">Menu</a> <a href="#reservations" class="mr-5 hover:text-gray-900">Reservations</a> <a href="#contact" class="mr-5 hover:text-gray-900">Contact Us</a> </nav> <button class="inline-flex items-center bg-gray-100 border-0 py-1 px-3 focus:outline-none hover:bg-gray-200 rounded text-base mt-4 md:mt-0">Reserve Now <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24"> <path d="M5 12h14M12 5l7 7-7 7"></path> </svg> </button> </div> </header> <main class="flex-grow"> <!-- Your content here --> </main> <footer class="bg-white"> <!-- Your footer content here --> </footer> </div> </body> </html>
Restaurant Website: A full-screen background image of a delicious meal, a centered logo, a reservation form at the top, and a sliding menu revealing different sections such as About Us, Menu, Reservations, and Contact us.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-black text-white"> <div class="flex flex-col items-center justify-center h-screen"> <img src="https://source.unsplash.com/random/300x200/?art" alt="Logo" class="mb-10"> <h1 class="text-4xl mb-10">Art Gallery</h1> <div class="grid grid-cols-3 gap-4"> <div class="bg-white text-black p-4"> <img src="https://source.unsplash.com/random/300x200/?painting" alt="Painting"> <h2 class="text-2xl mb-2">Painting Title</h2> <h3 class="text-xl mb-2">Artist Name</h3> <p>This is a beautiful painting by the artist. It is a representation of the beauty of nature.</p> </div> <div class="bg-white text-black p-4"> <img src="https://source.unsplash.com/random/300x200/?sculpture" alt="Sculpture"> <h2 class="text-2xl mb-2">Sculpture Title</h2> <h3 class="text-xl mb-2">Artist Name</h3> <p>This is a beautiful sculpture by the artist. It is a representation of the beauty of human creativity.</p> </div> <div class="bg-white text-black p-4"> <img src="https://source.unsplash.com/random/300x200/?drawing" alt="Drawing"> <h2 class="text-2xl mb-2">Drawing Title</h2> <h3 class="text-xl mb-2">Artist Name</h3> <p>This is a beautiful drawing by the artist. It is a representation of the beauty of human imagination.</p> </div> </div> </div> </body> </html>
Art Gallery: A minimalistic design with a black background, a large centered logo, and a gallery layout featuring selected works of art, each displayed with a title, artist name, and description.
<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"> <div class="flex flex-col items-center justify-center"> <img src="https://source.unsplash.com/random/1200x600/?real-estate" alt="Header Image" class="w-full h-64 object-cover"> <h1 class="text-4xl font-bold mt-8">Welcome to Our Real Estate Agency</h1> <p class="text-lg mt-4 text-center">We are a trusted real estate agency with a reputation for excellence. We specialize in finding the perfect home for you. Whether you're looking for a luxury home, a cozy starter home, or a vacation home, we've got you covered.</p> </div> <div class="flex flex-col md:flex-row mt-12"> <div class="w-full md:w-1/3 p-4"> <h2 class="text-2xl font-bold mb-4">Featured Listings</h2> <p class="text-lg">Check out our featured listings. We have a wide variety of properties to choose from.</p> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-4">View Listings</button> </div> <div class="w-full md:w-1/3 p-4"> <h2 class="text-2xl font-bold mb-4">Testimonials</h2> <p class="text-lg">Hear what our clients have to say about our services.</p> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-4">Read Testimonials</button> </div> <div class="w-full md:w-1/3 p-4"> <h2 class="text-2xl font-bold mb-4">About Us</h2> <p class="text-lg">Learn more about our real estate agency.</p> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-4">Learn More</button> </div> </div> <div class="flex flex-col items-center justify-center mt-12"> <h2 class="text-2xl font-bold mb-4">Contact Us</h2> <p class="text-lg mb-4">Ready to find your dream home? Contact us today.</p> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">Contact Us</button> </div> </div> </body> </html>
Real Estate Agency: A three-column layout with a header image of a beautiful property, and columns for Featured Listings, Testimonials, and About Us with a call-to-action button to Contact us or Schedule a Visit.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-white text-center py-10"> <img src="https://source.unsplash.com/random/300x200/?finance" alt="Logo" class="w-1/2 md:w-1/3 lg:w-1/4"> </header> <main class="container mx-auto px-4 py-10"> <section id="about" class="mb-10"> <h2 class="text-2xl mb-4">About Us</h2> <p class="text-lg">We are a leading financial services provider offering a wide range of services to meet your financial needs. Our team of experts is dedicated to providing you with the best possible service.</p> </section> <section id="services" class="mb-10"> <h2 class="text-2xl mb-4">Services</h2> <p class="text-lg">We offer a variety of financial services including but not limited to: Personal Finance, Investment Management, Tax Planning, and more.</p> </section> <section id="testimonials" class="mb-10"> <h2 class="text-2xl mb-4">Testimonials</h2> <p class="text-lg">"I was very impressed with the service I received from this company. They were very professional and went above and beyond to meet my needs." - John Doe</p> </section> <section id="contact" class="mb-10"> <h2 class="text-2xl mb-4">Contact Us</h2> <p class="text-lg">Phone: 123-456-7890</p> <p class="text-lg">Email: info@financeservices.com</p> </section> </main> <footer class="bg-white text-center py-4"> <p class="text-gray-500">© 2022 Financial Services. All rights reserved.</p> </footer> </body> </html>
Financial Services: A minimalistic design with a clean color palette, a centered logo, and a responsive layout that adjusts to different screen sizes, with sections for About Us, Services, Testimonials, and Contact us.
<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"> <img src="https://source.unsplash.com/random/1200x600/?campus" alt="Campus Scene" class="w-full h-64 object-cover"> <h1 class="text-4xl font-bold mt-8">Education Institution</h1> <p class="text-xl mt-4">We are a leading institution in the field of education, providing quality education to all students.</p> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded mt-8"> Learn More </button> </div> <div class="container mx-auto px-4 py-12"> <h2 class="text-3xl font-bold mb-8">Academics</h2> <p class="text-lg">Our academics are top-notch, with a wide range of courses and programs.</p> </div> <div class="container mx-auto px-4 py-12"> <h2 class="text-3xl font-bold mb-8">Admissions</h2> <p class="text-lg">We are currently accepting applications for the upcoming academic year.</p> </div> <div class="container mx-auto px-4 py-12"> <h2 class="text-3xl font-bold mb-8">Student Life</h2> <p class="text-lg">At our institution, we offer a vibrant student life with a wide range of extracurricular activities.</p> </div> <div class="container mx-auto px-4 py-12"> <h2 class="text-3xl font-bold mb-8">Testimonials</h2> <p class="text-lg">Hear what our students have to say about their experience at our institution.</p> </div> </body> </html>
Education Institution: A design featuring a photograph of a campus scene, a large header with the institution's name and tagline, a clear call-to-action button, and sections for Academics, Admissions, Student Life, and Testimonials.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-between items-center"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="h-10"> <input type="text" placeholder="Search for food items" class="border rounded p-2"> </header> <main class="container mx-auto p-4 flex flex-wrap"> <section class="w-full md:w-2/3 p-4"> <h2 class="text-2xl mb-4">Popular Food Categories</h2> <p class="mb-4">We offer a wide variety of food categories, from Italian to Indian, from Mexican to Chinese, and many more. Our menu is designed to cater to all tastes and preferences.</p> <h2 class="text-2xl mb-4">Current Promotions</h2> <p class="mb-4">Check out our current promotions and discounts. We offer discounts on a variety of food items, from appetizers to main courses, and desserts.</p> </section> <aside class="w-full md:w-1/3 p-4 bg-white"> <h2 class="text-2xl mb-4">Customer Reviews</h2> <p class="mb-4">Read what our customers have to say about our food delivery service. We strive to provide the best service and quality food.</p> <h2 class="text-2xl mb-4">Recommended Dishes</h2> <p class="mb-4">Check out our recommended dishes. We have a wide variety of dishes that are sure to satisfy your taste buds.</p> </aside> </main> <footer class="bg-white p-4 text-center"> <h2 class="text-2xl mb-4">About Us</h2> <p class="mb-4">We are a food delivery service dedicated to providing the best food to our customers. We strive to provide the best service and quality food.</p> <h2 class="text-2xl mb-4">Delivery Areas</h2> <p class="mb-4">We currently deliver to a wide variety of areas. Please check our website for more information.</p> <h2 class="text-2xl mb-4">Contact Us</h2> <p class="mb-4">For any inquiries, please contact us at 123-456-7890 or email us at info@fooddelivery.com.</p> </footer> </body> </html>
Food Delivery Service: A clean and minimalistic layout with a logo on the top left and a search bar for food items. The main content area shows popular food categories and current promotions, while the sidebar displays customer reviews and recommended dishes. The footer includes information about the company's mission, delivery areas, and contact details.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-between items-center"> <img src="https://source.unsplash.com/random/300x200/?logo" alt="Logo" class="h-12"> <form class="flex"> <input type="text" placeholder="Search courses" class="px-4 py-2 rounded-l"> <button type="submit" class="bg-purple-500 text-white px-4 py-2 rounded-r">Search</button> </form> </header> <main class="container mx-auto p-4"> <section class="my-8"> <h2 class="text-2xl font-bold mb-4">Featured Courses</h2> <!-- Add your featured courses here --> </section> <section class="my-8"> <h2 class="text-2xl font-bold mb-4">Instructors</h2> <!-- Add your instructors here --> </section> <section class="my-8"> <h2 class="text-2xl font-bold mb-4">Student Testimonials</h2> <!-- Add your testimonials here --> </section> </main> <footer class="bg-white p-4 flex justify-between items-center"> <div> <a href="#" class="mr-4">Blog</a> <a href="#" class="mr-4">Contact</a> <a href="#">FAQ</a> </div> <p>© 2022 E-learning Platform. All rights reserved.</p> </footer> </body> </html>
E-learning Platform: A professional and educational layout that includes a large logo on the top left and a clear search bar for courses. The main content area is divided into sections that showcase featured courses, instructors, and student testimonials. The footer includes links to a blog, a contact page, and a FAQ section.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex items-center justify-between"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="h-10"> <form> <input type="text" placeholder="Search articles..." class="border p-2 rounded"> </form> </header> <main class="container mx-auto p-4 flex"> <div class="w-3/4"> <h2 class="text-2xl mb-4">Trending Articles</h2> <div class="grid grid-cols-2 gap-4"> <article class="bg-white p-4"> <h3 class="text-xl mb-2">Article Title</h3> <p>Article summary goes here. This should be a brief summary of the article.</p> </article> <!-- More articles here --> </div> </div> <aside class="w-1/4 ml-4"> <h2 class="text-2xl mb-4">Categories</h2> <ul> <li>Category 1</li> <li>Category 2</li> <!-- More categories here --> </ul> </aside> </main> <footer class="bg-white p-4 text-center"> <p>Advertising information goes here.</p> <a href="/contact" class="block mt-2">Contact Us</a> <div class="mt-2"> <a href="#">Facebook</a> <a href="#" class="ml-2">Twitter</a> <a href="#" class="ml-2">Instagram</a> </div> </footer> </body> </html>
News Website: A clean and uncluttered layout with a minimalist design. The logo is positioned at the top left, and a prominent search bar enables users to search for specific articles. The main content area displays trending articles in a grid format, while the sidebar includes categories and other news sections. The footer includes advertising information, a contact page, and social media links.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-blue-200"> <div class="flex flex-col items-center justify-center h-screen"> <img src="https://source.unsplash.com/random/300x200/?logo" alt="Logo" class="mb-10"> <div class="flex flex-col items-center justify-center"> <h1 class="text-4xl mb-10">Welcome to Our IT Services Company</h1> <p class="text-xl mb-10">We are a leading provider of IT services, offering a wide range of solutions to meet your business needs. Our team of experts is dedicated to providing the best service possible, ensuring your IT infrastructure is always up-to-date and secure.</p> <button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded"> Contact Us </button> </div> </div> </body> </html>
IT Services Company: A minimalist design with a centered logo and a single-page layout. The background color is a cool, calming shade of blue. The navigation bar is hidden, and instead, users can scroll down to explore various sections, such as "Expertise," "Solutions," and "Testimonials." A call-to-action button is prominently displayed at the end of the page.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white shadow"> <div class="container mx-auto px-4 py-6 flex items-center justify-between"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="h-10"> <nav> <ul class="flex space-x-4"> <li><a href="#" class="text-gray-600 hover:text-gray-900">Home</a></li> <li><a href="#" class="text-gray-600 hover:text-gray-900">Classes</a></li> <li><a href="#" class="text-gray-600 hover:text-gray-900">About</a></li> <li><a href="#" class="text-gray-600 hover:text-gray-900">Contact</a></li> </ul> </nav> </div> </header> <main class="container mx-auto px-4 py-6"> <section> <h1 class="text-3xl font-bold mb-4">Welcome to Our Fitness Studio</h1> <p class="mb-4">We are a dynamic and welcoming fitness studio, offering a wide variety of classes to suit all fitness levels and interests. Our experienced instructors are dedicated to helping you reach your fitness goals.</p> <p class="mb-4">Whether you're a beginner just starting out or a seasoned athlete looking to take your training to the next level, we have something for everyone.</p> <p class="mb-4">Join us today and experience the difference that a fit and healthy lifestyle can make.</p> </section> </main> </body> </html>
Fitness Studio: A full-width header image or video showcasing a fitness class in session. The main navigation bar is positioned at the top, with the logo on the left side and the main menu items on the right. The homepage includes sections for class schedules, instructor bios, and special promotions.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Legal Services Firm</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#services" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Practice Areas </a> <a href="#attorneys" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Attorneys </a> <a href="#resources" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Resources </a> </div> <div> <a href="#contact" class="inline-block text-sm px-4 py-2 leading-none border rounded text-white border-white hover:border-transparent hover:text-teal-500 hover:bg-white mt-4 lg:mt-0">Contact Us</a> </div> </div> </nav> <div class="container mx-auto px-4 py-8"> <h1 class="text-3xl font-bold mb-4">Welcome to Legal Services Firm</h1> <p class="mb-4">We are a leading provider of legal services in the industry. Our team of experienced attorneys are dedicated to providing the highest level of service to our clients. We have a wide range of practice areas, including criminal law, family law, and business law. We also offer a variety of resources to help our clients navigate the legal system.</p> <h2 class="text-2xl font-bold mb-4 mt-8">Our Services</h2> <p class="mb-4">Our services include a wide range of legal services, including criminal law, family law, and business law. We also offer a variety of resources to help our clients navigate the legal system.</p> <h2 class="text-2xl font-bold mb-4 mt-8">Client Testimonials</h2> <p class="mb-4">We have had the privilege of working with many satisfied clients. Here is what they have to say about our services.</p> <h2 class="text-2xl font-bold mb-4 mt-8">Recent News</h2> <p class="mb-4">Stay up-to-date with our latest news and updates.</p> </div> </body> </html>
Legal Services Firm: A sophisticated design with the logo and main navigation bar positioned at the top. The main menu items include "Practice Areas," "Attorneys," and "Resources," with a call-to-action button at the end of the navigation bar. The homepage includes sections for an overview of the firm's services, client testimonials, and recent news articles.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="flex flex-col min-h-screen"> <header class="bg-white"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a href="#" class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"> <img src="https://source.unsplash.com/random/100x100/?tech" alt="Logo" class="w-10 h-10"> <span class="ml-3 text-xl">Tech Company</span> </a> </div> </header> <main class="flex-grow"> <section class="w-full bg-cover bg-center h-96" style="background-image: url('https://source.unsplash.com/random/1600x900/?tech')"> <div class="container mx-auto px-5 py-24"> <h1 class="text-3xl font-bold mb-4">Welcome to Tech Company</h1> <p class="text-lg mb-8"> At Tech Company, we are dedicated to providing the latest and greatest in technology. Our mission is to make technology accessible and affordable for everyone. We believe in the power of technology to transform the world and we are committed to making that a reality. </p> <button class="bg-yellow-500 hover:bg-yellow-700 text-white font-bold py-2 px-4 rounded"> Learn More </button> </div> </section> </main> </div> </body> </html>
Tech Company: A minimalist design with a large background image of the latest tech device. The logo is placed at the top left, and the navigation is hidden in a hamburger menu. The main content spans the entire width of the page, with a call-to-action (CTA) button at the end.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-white"> <div class="container mx-auto px-4 py-8"> <div class="flex flex-col md:flex-row"> <div class="w-full md:w-1/2 p-4"> <img src="https://source.unsplash.com/random/300x200/?food" alt="Food Image" class="w-full"> </div> <div class="w-full md:w-1/2 p-4"> <div class="flex flex-col"> <div class="mb-4"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="w-32"> </div> <div class="mb-4"> <h2 class="text-2xl font-bold mb-2">Our Services</h2> <p class="mb-2">We offer a wide range of delicious meals to our customers. Our meals are prepared with the freshest ingredients and cooked to perfection.</p> <p class="mb-2">We offer a wide range of delicious meals to our customers. Our meals are prepared with the freshest ingredients and cooked to perfection.</p> </div> <div class="mb-4"> <h2 class="text-2xl font-bold mb-2">Pricing</h2> <p class="mb-2">Our prices are very competitive and affordable. We offer a wide range of meal plans to fit your budget.</p> <p class="mb-2">Our prices are very competitive and affordable. We offer a wide range of meal plans to fit your budget.</p> </div> <div class="mb-4"> <h2 class="text-2xl font-bold mb-2">Ordering Process</h2> <p class="mb-2">Ordering is easy and convenient. You can place your order online or over the phone.</p> <p class="mb-2">Ordering is easy and convenient. You can place your order online or over the phone.</p> </div> <div class="mb-4"> <a href="#" class="bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded">Order Now</a> </div> </div> </div> </div> </div> </body> </html>
Food Delivery Service: A two-column layout with a high-resolution image of a delicious meal on the left and a white background on the right. The logo is placed at the top left, with the main navigation listed vertically on the left column. The right column contains information about the services, pricing, and ordering process, with a prominent CTA button.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="flex flex-col min-h-screen"> <header class="bg-cover bg-center h-64 flex justify-center items-center" style="background-image: url('https://source.unsplash.com/random/1600x900/?nature')"> <img src="https://source.unsplash.com/random/300x200/?logo" alt="Logo" class="h-16"> </header> <nav class="bg-pink-500 text-white p-4"> <ul class="flex space-x-4 justify-center"> <li><a href="#" class="hover:text-pink-200">Home</a></li> <li><a href="#" class="hover:text-pink-200">Services</a></li> <li><a href="#" class="hover:text-pink-200">About Us</a></li> <li><a href="#" class="hover:text-pink-200">Contact</a></li> </ul> </nav> <main class="flex-grow p-4"> <section> <h2 class="text-2xl mb-4">Welcome to our Health and Wellness Clinic</h2> <p class="mb-4">At our clinic, we believe in the power of nature to heal. Our mission is to provide a safe, supportive, and nurturing environment where you can unwind, relax, and rejuvenate. We offer a wide range of services to meet your health and wellness needs.</p> </section> </main> <footer class="bg-pink-500 text-white text-center p-4"> <p>© 2022 Health and Wellness Clinic. All rights reserved.</p> </footer> </div> </body> </html>
Health and Wellness Clinic: A clean and calming design with a full-width background image of a natural setting. The logo is located at the top center, with the main navigation bar positioned horizontally across the top. The main content includes sections about different health services, patient testimonials, and a CTA to book an appointment.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="flex flex-col min-h-screen"> <header class="bg-white"> <nav class="flex items-center justify-between flex-wrap p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo"> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Home </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Case Studies </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Team's Portfolio </a> </div> </div> </nav> </header> <main class="flex-grow"> <!-- Main content goes here --> </main> <footer class="bg-white"> <div class="container mx-auto px-8"> <div class="w-full flex flex-col md:flex-row py-6"> <div class="flex-1 mb-6"> <a class="text-white font-bold text-xl" href="#/">Architecture Firm</a> </div> <div class="flex-1"> <p class="uppercase text-gray-500 md:mb-0">Links</p> <ul class="list-reset mb-6"> <li class="mt-2 inline-block mr-2 md:block md:mr-0"> <a href="#/" class="no-underline hover:underline text-gray-800 hover:text-orange-500">Home</a> </li> <li class="mt-2 inline-block mr-2 md:block md:mr-0"> <a href="#/" class="no-underline hover:underline text-gray-800 hover:text-orange-500">Case Studies</a> </li> <li class="mt-2 inline-block mr-2 md:block md:mr-0"> <a href="#/" class="no-underline hover:underline text-gray-800 hover:text-orange-500">Team's Portfolio</a> </li> </ul> </div> </div> </div> </footer> </div> </body> </html>
Architecture Firm: A sophisticated and modern design with a large, high-quality image of a building project as the background. The logo is placed at the bottom center, and the main navigation is located at the top left. The main content includes case studies, the team's portfolio, and a contact section, with prominent CTAs throughout.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-6 flex justify-between items-center"> <img src="https://source.unsplash.com/random/300x200/?event" alt="Event Logo" class="h-16"> <nav> <ul class="flex space-x-4"> <li><a href="#about" class="text-gray-600 hover:text-gray-800">About</a></li> <li><a href="#services" class="text-gray-600 hover:text-gray-800">Services</a></li> <li><a href="#testimonials" class="text-gray-600 hover:text-gray-800">Testimonials</a></li> <li><a href="#contact" class="text-gray-600 hover:text-gray-800">Contact</a></li> </ul> </nav> </header> <main class="max-w-6xl mx-auto p-6"> <section id="about" class="mb-10"> <h2 class="text-2xl mb-4">About Us</h2> <p class="mb-4">We are a team of passionate event planners who believe in creating unforgettable experiences. Our mission is to make your event a success story.</p> <img src="https://source.unsplash.com/random/1200x600/?event" alt="Past Event" class="w-full h-64 object-cover my-4"> </section> <section id="services" class="mb-10"> <h2 class="text-2xl mb-4">Our Services</h2> <p class="mb-4">We offer a wide range of services including wedding planning, corporate events, social events, and more.</p> </section> <section id="testimonials" class="mb-10"> <h2 class="text-2xl mb-4">Client Testimonials</h2> <p class="mb-4">Here are some testimonials from our happy clients.</p> </section> <section id="contact" class="mb-10"> <h2 class="text-2xl mb-4">Contact Us</h2> <p class="mb-4">Ready to plan your next event? Contact us today.</p> </section> </main> <footer class="bg-white p-6 text-center"> <p class="text-gray-600">© 2022 Event Planning Company. All rights reserved.</p> </footer> </body> </html>
Event Planning Company: A vibrant and lively design with multiple sections for different types of events (e.g., weddings, corporate events, social events). A large image of a past event and the logo are at the top. The navigation menu is located at the top right, and the main content includes information about the planning process, client testimonials, and a CTAs for contacting the company or browsing specific event types.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-white"> <header class="bg-gray-500 text-white p-4 flex justify-center"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo"> </header> <nav class="bg-gray-300 p-4 flex justify-center space-x-4"> <a href="#programs" class="text-white">Programs</a> <a href="#faculty" class="text-white">Faculty</a> <a href="#research" class="text-white">Research</a> <a href="#testimonials" class="text-white">Testimonials</a> </nav> <main class="p-4"> <section id="programs" class="my-4"> <h2 class="text-2xl">Programs</h2> <p>We offer a variety of programs designed to meet the needs of our students.</p> </section> <section id="faculty" class="my-4"> <h2 class="text-2xl">Faculty</h2> <p>Our faculty is composed of experienced and qualified professionals.</p> </section> <section id="research" class="my-4"> <h2 class="text-2xl">Research</h2> <p>We are committed to conducting cutting-edge research in our field.</p> </section> <section id="testimonials" class="my-4"> <h2 class="text-2xl">Testimonials</h2> <p>Hear what our students have to say about their experience.</p> </section> </main> </body> </html>
Educational Institute: A professional and authoritative design with a clean color scheme and plenty of white space. The logo is positioned at the top center, and the main navigation menu is located horizontally across the top. The main content includes sections on programs, faculty, research, and student testimonials, with a clear call-to-action (CTA) for potential students to apply.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="flex justify-end p-4 bg-white"> <nav> <ul class="flex space-x-4"> <li><a href="#past-exhibitions">Past Exhibitions</a></li> <li><a href="#artists-bios">Artists' Bios</a></li> <li><a href="#shop">Shop</a></li> </ul> </nav> </header> <main class="container mx-auto p-4"> <section id="past-exhibitions"> <h2>Past Exhibitions</h2> <!-- Add your content here --> </section> <section id="artists-bios"> <h2>Artists' Bios</h2> <!-- Add your content here --> </section> <section id="shop"> <h2>Shop</h2> <!-- Add your content here --> </section> </main> <footer class="p-4 bg-white"> <div class="flex justify-center"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Art Gallery Logo"> </div> </footer> </body> </html>
Art Gallery: A dynamic and artistic design that reflects the creative nature of the gallery. A large, rotating slideshow of artworks serves as the background. The logo is placed at the bottom center, and the main navigation is located at the top right. The main content includes sections for past exhibitions, artists' bios, and a shop selling prints and merchandise.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Food Delivery Service</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Home </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Menu </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Contact </a> </div> </div> </nav> <div class="container mx-auto px-4 py-12"> <h1 class="text-4xl text-center font-bold mb-8">Welcome to our Food Delivery Service</h1> <p class="text-center mb-8">We offer a wide variety of delicious food items, prepared with the freshest ingredients and served in a fun and playful environment. Our mission is to make food enjoyable and accessible to everyone, no matter the dietary requirements.</p> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"> <div class="bg-white rounded-lg shadow-lg p-4"> <img src="https://source.unsplash.com/random/300x200/?pizza" alt="Pizza" class="w-full"> <h2 class="text-2xl font-bold mb-2">Pizza</h2> <p class="text-gray-700">A delicious pizza with a variety of toppings.</p> </div> <!-- Add more food items here --> </div> </div> </body> </html>
Food Delivery Service: A vibrant and playful design with a large, centered food photo, a menu bar at the top, and a grid-style layout for food categories, with each image representing a different dish.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-green-500 text-white"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a class="flex title-font font-medium items-center text-white mb-4 md:mb-0"> <img src="https://source.unsplash.com/random/300x200/?hospital" alt="Hospital Image"> <span class="ml-3 text-xl">Health Care Provider</span> </a> <a href="#" class="inline-flex items-center bg-white text-green-500 border-0 py-1 px-3 focus:outline-none hover:bg-gray-200 rounded text-base mt-4 md:mt-0"> Book Now </a> </div> </header> <section class="py-12 bg-white"> <div class="container mx-auto flex flex-wrap pt-4 pb-12"> <h2 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800"> About Us </h2> <div class="w-full mb-4"></div> <p class="leading-relaxed mt-4 text-gray-600"> At Health Care Provider, we are committed to providing the highest quality healthcare services to our patients. Our team of experienced healthcare professionals is dedicated to providing compassionate, personalized care that is tailored to each individual patient's needs. We believe in the power of early detection and prevention, and we offer a wide range of services to help you maintain and improve your health. </p> </div> </section> </body> </html>
Health Care Provider: An accessible design with a clear, easy-to-navigate layout, a calming color palette, and a header containing an image of a person smiling in a hospital gown, along with a call-to-action button.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-bold"> <div class="relative"> <video autoplay muted loop id="myVideo"> <source src="video.mp4" type="video/mp4"> </video> <div class="absolute top-0 w-full h-full bg-black opacity-50"></div> </div> <nav class="sticky top-0 z-10 bg-white py-4 px-6 flex justify-between"> <a href="#" class="text-lg">Tech Startup</a> <div class="flex"> <a href="#" class="px-4">Facebook</a> <a href="#" class="px-4">Twitter</a> <a href="#" class="px-4">Instagram</a> </div> </nav> <div class="container mx-auto py-10 px-6"> <h1 class="text-4xl mb-6">Welcome to Tech Startup</h1> <p class="mb-6"> At Tech Startup, we are dedicated to providing innovative and cutting-edge solutions to the world's most complex problems. Our team of experts is comprised of the brightest minds in their respective fields, each with a wealth of experience and a passion for technology. We believe in the power of technology to transform the world, and we are committed to using our skills and knowledge to make that a reality. </p> <!-- Add more paragraphs as needed --> </div> </body> </html>
Tech Startup: A sleek and futuristic design consisting of a full-screen background video, a sticky navbar with social media links, and a bold, condensed font for all the text.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Book Publisher</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Home </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> About </a> <a href="#responsive-header" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Contact </a> </div> </div> </nav> <div class="container mx-auto px-4"> <h1 class="text-3xl text-center my-8">Welcome to Book Publisher</h1> <p class="text-lg text-center"> At Book Publisher, we are dedicated to providing classic and sophisticated designs for your books. Our two-column layout showcases book covers in a clean and elegant manner. Our menu is simple and easy to navigate, and our text is centered for a clean and readable look. We use high-quality materials to ensure your books look their best. </p> </div> </body> </html>
Book Publisher: A classic and sophisticated design with a two-column layout for showcasing book covers, a simple, clean menu at the top, and a centered, elegant font for all the text.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 md:px-6 text-xl text-gray-800 leading-normal" style="font-family: 'Source Sans Pro', sans-serif;"> <div class="font-sans p-4 text-center"> <h1 class="text-4xl text-gray-900 font-bold leading-tight">Welcome to our Travel Agency</h1> <p class="text-base text-gray-600 leading-relaxed mt-6"> We are a dynamic and engaging travel agency that offers a wide range of travel destinations. Our experienced team is dedicated to providing you with the best service and ensuring your trip is unforgettable. Whether you're looking for a relaxing beach vacation, an adventurous trek, or a cultural experience, we have something for everyone. </p> </div> <div class="flex flex-wrap -mx-4 overflow-hidden"> <div class="my-4 px-4 w-full overflow-hidden md:w-1/2"> <img class="rounded-lg" src="https://source.unsplash.com/random/300x200/?travel" alt="Travel Image"> </div> <div class="my-4 px-4 w-full overflow-hidden md:w-1/2"> <img class="rounded-lg" src="https://source.unsplash.com/random/300x200/?destination" alt="Destination Image"> </div> </div> <div class="flex flex-wrap -mx-4 overflow-hidden"> <div class="my-4 px-4 w-full overflow-hidden md:w-1/2"> <img class="rounded-lg" src="https://source.unsplash.com/random/300x200/?adventure" alt="Adventure Image"> </div> <div class="my-4 px-4 w-full overflow-hidden md:w-1/2"> <img class="rounded-lg" src="https://source.unsplash.com/random/300x200/?culture" alt="Culture Image"> </div> </div> <div class="text-center mt-10"> <a href="#" class="no-underline inline-block bg-gray-900 hover:bg-gray-800 text-white hover:text-gray-300 font-bold py-2 px-4 rounded">Book Now</a> </div> </div> </div> </body> </html>
Travel Agency: A dynamic and engaging design with a carousel of images featuring different travel destinations, a bottom navigation bar, and a call-to-action button for booking a trip.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-center"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="h-10"> </header> <section class="p-4"> <div class="flex justify-center"> <input type="text" placeholder="Search for properties" class="px-4 py-2 rounded-l"> <button class="bg-gray-500 text-white px-4 py-2 rounded-r">Search</button> </div> </section> <section class="p-4"> <div class="grid grid-cols-3 gap-4"> <div class="bg-white p-4"> <h2 class="text-lg font-bold">Property 1</h2> <p>This is a beautiful property located in the heart of the city. It features a modern design with high ceilings and a spacious layout.</p> </div> <div class="bg-white p-4"> <h2 class="text-lg font-bold">Property 2</h2> <p>This is a cozy property in a quiet neighborhood. It has a classic charm and a comfortable layout.</p> </div> <div class="bg-white p-4"> <h2 class="text-lg font-bold">Property 3</h2> <p>This is a luxury property in the suburbs. It has a grand design with high ceilings and a spacious layout.</p> </div> </div> </section> <footer class="bg-white p-4 text-center"> <p>Our company is dedicated to providing the best real estate services in the area. We have a wide range of properties for sale and for rent.</p> </footer> </body> </html>
Real Estate Company: A clean and professional design with a centered logo, a prominent search bar, a grid layout for property listings, and a footer containing information about the company and its various services.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 md:px-6 text-xl text-gray-800 leading-normal" style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana"> <div class="font-sans p-4 bg-white border rounded shadow"> <h1 class="text-3xl text-gray-800 font-bold leading-tight">Welcome to Our Education Platform</h1> <p class="text-gray-600 mt-4"> At our education platform, we believe that education should be accessible to everyone, regardless of their location or financial situation. That's why we offer a wide range of courses that cater to different learning styles and needs. Whether you're a beginner just starting out or an experienced professional looking to enhance your skills, we have something for you. </p> <p class="text-gray-600 mt-4"> Our courses are designed to be interactive and engaging, with a combination of lectures, practical exercises, and real-world projects. We believe that learning should be fun, and we strive to make our courses as enjoyable as possible. </p> <p class="text-gray-600 mt-4"> We also offer a variety of resources, including textbooks, study guides, and online tutorials, to help you succeed in your courses. And our community of learners is always here to support you, whether you have a question about a course or need help with a project. </p> <p class="text-gray-600 mt-4"> So why wait? Start exploring our courses today and start your journey towards a brighter future. </p> </div> </div> </div> </body> </html>
Education Platform: A visually appealing and interactive design featuring a full-screen banner with a call-to-action button, a sidebar menu for easy navigation, and an editable course calendar embedded within the layout.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="sticky top-0 bg-white shadow-md"> <div class="container mx-auto p-4"> <h1 class="text-2xl font-bold">Marketing Agency</h1> </div> </header> <main class="container mx-auto p-4"> <div class="flex flex-col md:flex-row"> <div class="w-full md:w-1/2 p-4"> <img src="https://source.unsplash.com/random/300x200/?team" alt="Team Image" class="w-full"> </div> <div class="w-full md:w-1/2 p-4"> <p class="text-lg"> At our marketing agency, we specialize in creating unique and effective marketing strategies that help our clients reach their business goals. Our team of experienced marketers and creatives are dedicated to understanding your business, your target audience, and your unique challenges. We use a variety of marketing tools and techniques to help you achieve your marketing goals. Whether you're looking to increase brand awareness, drive website traffic, or generate leads, we have the expertise to help. </p> </div> </div> <div class="flex justify-center mt-8"> <button class="bg-pink-500 hover:bg-pink-700 text-white font-bold py-2 px-4 rounded"> Contact Us </button> </div> </main> <footer class="bg-gray-800 text-white p-4"> <div class="container mx-auto"> <p class="text-center"> &copy; 2022 Marketing Agency. All rights reserved. </p> </div> </footer> </body> </html>
Marketing Agency: A bold and creative design with a split-screen layout (one half for an image of a team, the other half for text), a sticky header, a call-to-action button that follows the user as they scroll, and a footer containing customer testimonials.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-green-50 text-white"> <nav class="fixed w-full top-0 bg-green-600 p-4"> <ul class="flex justify-center space-x-8"> <li><a href="#" class="hover:text-green-300">Home</a></li> <li><a href="#" class="hover:text-green-300">About</a></li> <li><a href="#" class="hover:text-green-300">Services</a></li> <li><a href="#" class="hover:text-green-300">Contact</a></li> </ul> </nav> <div class="flex justify-center items-center h-screen"> <img src="https://source.unsplash.com/random/1200x800/?tech" alt="Hero Image" class="max-h-screen"> </div> <div class="container mx-auto p-8"> <h1 class="text-4xl mb-4">Welcome to Our Tech Company</h1> <p class="mb-4"> At our tech company, we are dedicated to providing innovative and reliable technology solutions to meet your business needs. Our team of experts is committed to delivering high-quality products and services that exceed your expectations. Whether you're looking for software development, IT consulting, or cloud services, we're here to help. </p> <p class="mb-4"> We believe in the power of technology to transform businesses and improve lives. That's why we're committed to staying at the forefront of the latest advancements in technology, constantly innovating and evolving to meet the changing needs of our clients. </p> <p class="mb-4"> Contact us today to learn more about how we can help your business thrive in the digital age. </p> </div> </body> </html>
Tech Company: A minimalistic design with a large, centered hero image and a navigation bar that sticks to the top of the page. The primary color scheme is blue and white, with subtle animations and scrolling effects.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 md:px-6 text-xl text-gray-800 leading-normal" style="font-family: 'Playfair Display', serif;"> <p class="p-4 bg-white rounded-lg shadow-xl"> At our Art Gallery, we believe that art is a universal language that can connect people from all walks of life. We are committed to showcasing the best of contemporary and established artists, from painting to sculpture, photography, and more. Our mission is to provide a space where artists can exhibit their work and for art lovers to discover new and exciting pieces. We believe that art has the power to inspire, to challenge, and to bring people together. </p> </div> </div> </body> </html>
Art Gallery: A full-screen slideshow showcasing the artwork, with a thin, black outline surrounding each image. The logo sits at the top left of the page, and the navigation bar is embedded in the footer of the page. The typography is simple and elegant, allowing the art to take center stage.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-green-500"> <header class="bg-green-500 text-white text-center py-16"> <h1 class="text-4xl">Welcome to our Travel Agency</h1> <p class="mt-4">We are a dynamic layout featuring full-width images of travel destinations, with a scrolling banner displaying testimonials and call-to-action buttons.</p> </header> <section class="py-16"> <div class="container mx-auto"> <!-- Full-width images of travel destinations --> <img src="https://source.unsplash.com/random/1200x400/?travel" alt="Travel Destinations" class="w-full"> </div> </section> <section class="bg-green-500 text-white py-16"> <div class="container mx-auto"> <!-- Scrolling banner displaying testimonials --> <div class="overflow-x-auto whitespace-nowrap"> <!-- Testimonials --> <div class="inline-block px-4"> <p>"I had the best experience with this travel agency. The itinerary was easy to digest and the staff was very friendly and helpful."</p> <p class="mt-4">- John Doe</p> </div> <!-- More testimonials --> </div> </div> </section> <section class="py-16"> <div class="container mx-auto"> <!-- Call-to-action buttons --> <a href="#" class="bg-green-500 text-white px-4 py-2 rounded">Book Now</a> </div> </section> </body> </html>
Travel Agency: A dynamic layout featuring full-width images of travel destinations, with a scrolling banner displaying testimonials and call-to-action buttons. The primary color scheme is green and blue, representing nature and adventure. The maps and itineraries are presented in an easy-to-digest format.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-sans antialiased text-gray-900 leading-normal tracking-wider bg-gray-200"> <div class="flex flex-wrap"> <div class="w-full lg:w-1/4 p-4"> <!-- Sidebar content --> <h2 class="text-lg font-bold">Contact Information</h2> <p>Phone: 123-456-7890</p> <p>Email: info@constructioncompany.com</p> <h2 class="text-lg font-bold">Services</h2> <p>Residential construction</p> <p>Commercial construction</p> </div> <div class="w-full lg:w-3/4 p-4"> <!-- Main content --> <h1 class="text-2xl font-bold">Welcome to Our Construction Company</h1> <p>We are a leading construction company specializing in residential and commercial construction. Our team of experienced professionals is dedicated to delivering high-quality, reliable construction services. We pride ourselves on our attention to detail and our commitment to safety.</p> <!-- Portfolio grid --> <div class="grid grid-cols-2 gap-4"> <div class="bg-white p-4"> <h2 class="text-lg font-bold">Project 1</h2> <img src="https://source.unsplash.com/random/300x200/?construction" alt="Project 1"> </div> <div class="bg-white p-4"> <h2 class="text-lg font-bold">Project 2</h2> <img src="https://source.unsplash.com/random/300x200/?construction" alt="Project 2"> </div> <!-- Add more projects as needed --> </div> </div> </div> </body> </html>
Construction Company: A grid layout displaying the company's portfolio of projects, with a sidebar on the left showing contact information and services. The design is inspired by industrial materials, with a color palette featuring shades of gray and blue. The fonts are robust and easy to read, conveying reliability and professionalism.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-serif text-gray-800 bg-yellow-50"> <header class="bg-brown-500 text-white p-4"> <h1 class="text-4xl">Education Company</h1> </header> <main class="p-4"> <section class="mb-4"> <h2 class="text-2xl mb-2">Welcome to Education Company</h2> <p class="mb-4"> At Education Company, we believe that education is the key to unlocking a brighter future. Our mission is to provide high-quality, affordable education to all who seek it. We offer a wide range of courses in various subjects, taught by experienced and dedicated faculty. </p> <img src="https://source.unsplash.com/random/300x200/?classroom" alt="Classroom"> </section> <section class="mb-4"> <h2 class="text-2xl mb-2">Our Faculty</h2> <p class="mb-4"> Our faculty is composed of some of the most qualified and experienced professionals in their respective fields. They are committed to providing the best possible education to our students. </p> <!-- Faculty bios would go here --> </section> <section class="mb-4"> <h2 class="text-2xl mb-2">Our Courses</h2> <p class="mb-4"> We offer a wide range of courses in various subjects. Whether you're interested in science, technology, the arts, or business, we have something for you. </p> <!-- Course modules would go here --> </section> </main> <footer class="bg-brown-500 text-white p-4"> <p>© 2022 Education Company</p> </footer> </body> </html>
Education Company: A layout with a large hero image of students in a classroom, followed by a grid of course modules and faculty bios. The color scheme is academic, with a brown and gold palette reminiscent of diplomas and degrees. The fonts are clean and easy to read, with a serif typeface for headings and a sans-serif typeface for body text.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-black text-white"> <div class="flex flex-col items-center justify-center h-screen"> <h1 class="text-4xl font-bold">Welcome to Music Studio</h1> <p class="text-center mt-4"> Music Studio is a premier destination for music enthusiasts. We specialize in curating a diverse range of genres, from classical to rock, jazz, and more. Our mission is to provide a platform for artists to showcase their unique talents and for fans to discover new music. We believe in the power of music to touch, inspire, and move people. Join us on our journey to celebrate the magic of music. </p> <div class="mt-8"> <img src="https://source.unsplash.com/random/300x200/?music" alt="Music Studio"> </div> </div> <div class="fixed bottom-0 w-full bg-black text-white p-4"> <nav class="flex justify-between"> <a href="#">Home</a> <a href="#">About</a> <a href="#">Contact</a> </nav> </div> </body> </html>
Music Studio: A layout featuring a full-width image slideshow of musicians, with the logo and navigation bar at the bottom of the page. The primary color scheme is black and white, with occasional splashes of color to represent different genres. The design is inspired by album covers, with a clean and minimalist aesthetic.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-red-500 text-white"> <nav class="bg-white text-red-500 p-4"> <!-- Navigation bar content --> </nav> <div class="w-full h-screen bg-cover bg-center" style="background-image: url('https://source.unsplash.com/random/1600x900/?property')"> <!-- Full-screen image content --> </div> <div class="container mx-auto p-4"> <h1 class="text-4xl font-bold mb-4">Welcome to Our Real Estate Company</h1> <p class="text-lg mb-8"> We are a leading real estate company in the industry, offering a wide range of properties for sale. Whether you're looking for a luxury home, a cozy condo, or a spacious estate, we have something for everyone. </p> <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4"> <!-- Grid layout content --> </div> </div> </body> </html>
Real Estate Company: A design with a large full-screen image of a property, followed by a grid layout displaying similar homes for sale. The navigation bar is at the top of the page, and the color scheme is inspired by the property market, with a red and white palette reminiscent of "For Sale" signs. The typography is clear and easy to read, with font sizes scaled appropriately for different devices.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="font-sans"> <header class="bg-gray-800 text-white p-4"> <nav class="flex justify-between"> <div> <a href="#" class="text-xl font-bold">Digital Agency</a> </div> <div> <a href="#" class="px-4">Home</a> <a href="#" class="px-4">About</a> <a href="#" class="px-4">Services</a> <a href="#" class="px-4">Contact</a> </div> </nav> </header> <section class="bg-gray-200 py-20 text-center"> <h1 class="text-4xl mb-4">Welcome to our Digital Agency</h1> <p class="text-xl mb-8">We are a full-service digital agency that helps businesses of all sizes to reach their goals.</p> <button class="bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded"> Get Started </button> </section> <section class="bg-white py-20 text-center"> <h2 class="text-3xl mb-4">Our Services</h2> <p class="text-xl mb-8">We offer a wide range of services including web design, SEO, social media marketing, and more.</p> </section> <footer class="bg-gray-800 text-white p-4 text-center"> <p>© 2022 Digital Agency. All rights reserved.</p> </footer> </body> </html>
Digital Agency Site: A minimalist design with a full-width hero image and call-to-action (CTA) button. The primary navigation menu is at the top, and the main content is organized into sections, each with a unique background color. The footer includes social media links, contact information, and a testimonials section.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-between items-center"> <div> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo"> </div> <div> <input type="text" placeholder="Search..." class="border rounded p-2"> </div> <nav> <ul class="flex space-x-4"> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> </nav> </header> <main class="flex p-4"> <section class="w-3/4"> <!-- Masonry layout here --> </section> <aside class="w-1/4 p-4 bg-white"> <!-- Sidebar content here --> </aside> </main> <footer class="bg-white p-4 text-center"> <p>© 2022 Food Company. All rights reserved.</p> </footer> </body> </html>
Blog for a Food Company: A masonry layout showcasing large images of dishes with short descriptions and CTAs. The header contains the logo, search bar, and main navigation. The sidebar has links to popular and recent posts, categories, and an email sign-up form.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-white text-gray-800"> <div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"> <a class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"> <span class="ml-3 text-xl">Tech Company</span> </a> <nav class="md:ml-auto flex flex-wrap items-center text-base justify-center"> <a href="#about" class="mr-5 hover:text-gray-900">About</a> <a href="#services" class="mr-5 hover:text-gray-900">Services</a> <a href="#contact" class="mr-5 hover:text-gray-900">Contact</a> </nav> </div> </header> <main> <section id="about" class="bg-white py-16"> <div class="container mx-auto flex flex-wrap pt-4 pb-12"> <h2 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800">About Us</h2> <p class="text-gray-800 text-lg mx-auto leading-relaxed"> At Tech Company, we are dedicated to providing the best technology solutions for our clients. Our team of experts is committed to delivering high-quality, reliable, and innovative products and services. We are passionate about technology and are always looking for new ways to improve and innovate. </p> </div> </section> <section id="services" class="bg-gray-200 py-16"> <div class="container mx-auto flex flex-wrap pt-4 pb-12"> <h2 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800">Our Services</h2> <p class="text-gray-800 text-lg mx-auto leading-relaxed"> We offer a wide range of services including software development, web design, mobile app development, and more. Our team of experts is skilled in a variety of programming languages and technologies. </p> </div> </section> <section id="contact" class="bg-white py-16"> <div class="container mx-auto flex flex-wrap pt-4 pb-12"> <h2 class="w-full my-2 text-5xl font-bold leading-tight text-center text-gray-800">Contact Us</h2> <p class="text-gray-800 text-lg mx-auto leading-relaxed"> We would love to hear from you. Please contact us using the form below or give us a call at 123-456-7890. </p> </div> </section> </main> <footer class="bg-gray-800 text-gray-300 py-8"> <div class="container mx-auto flex flex-wrap pt-4 pb-12"> <div class="w-full"> <p class="text-center">© 2022 Tech Company. All rights reserved.</p> </div> </div> </footer> </body> </html>
Tech Company Site: A one-page website design with a clean, modern layout. The header includes a hidden navigation menu, revealing upon scrolling. The main content sections are separated by different background colors and animations. The footer has social media icons, contact information, and a newsletter sign-up form.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-black text-white"> <header class="flex justify-center items-center h-64 bg-black"> <img src="https://source.unsplash.com/random/300x200/?law" alt="Law Firm Logo" class="h-32"> </header> <nav class="flex justify-center items-center h-16 bg-gold"> <ul class="flex space-x-4"> <li><a href="#home" class="text-white">Home</a></li> <li><a href="#about" class="text-white">About</a></li> <li><a href="#services" class="text-white">Services</a></li> <li><a href="#contact" class="text-white">Contact</a></li> </ul> </nav> <main> <section id="home" class="flex flex-col items-center justify-center h-screen bg-cover bg-center bg-no-repeat" style="background-image: url('https://source.unsplash.com/random/1600x900/?law')"> <h1 class="text-4xl">Welcome to Our Law Firm</h1> <p class="text-xl">We are a team of experienced attorneys dedicated to providing the highest level of service to our clients.</p> </section> <section id="about" class="flex flex-col items-center justify-center h-screen bg-cover bg-center bg-no-repeat" style="background-image: url('https://source.unsplash.com/random/1600x900/?team')"> <h1 class="text-4xl">About Us</h1> <p class="text-xl">Our firm was founded in 2005 with the goal of providing quality legal services to our clients. We have a team of experienced attorneys who are dedicated to providing the highest level of service.</p> </section> <section id="services" class="flex flex-col items-center justify-center h-screen bg-cover bg-center bg-no-repeat" style="background-image: url('https://source.unsplash.com/random/1600x900/?services')"> <h1 class="text-4xl">Our Services</h1> <p class="text-xl">We offer a wide range of legal services including criminal defense, personal injury, family law, and more.</p> </section> <section id="contact" class="flex flex-col items-center justify-center h-screen bg-cover bg-center bg-no-repeat" style="background-image: url('https://source.unsplash.com/random/1600x900/?contact')"> <h1 class="text-4xl">Contact Us</h1> <p class="text-xl">Phone: 123-456-7890</p> <p class="text-xl">Email: info@ourlawfirm.com</p> </section> </main> <footer class="flex justify-center items-center h-16 bg-gold"> <p class="text-white">© 2022 Our Law Firm. All rights reserved.</p> </footer> </body> </html>
Law Firm Site: A traditional design with a centered logo and a black and gold color scheme. The main navigation menu is placed at the top, and each section features a clean layout with a large background image and brief text description. The footer includes links to various practice area and attorney sections, as well as contact information and a contact form.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="bg-white shadow"> <div class="container mx-auto flex flex-col items-center p-4 md:flex-row"> <nav class="flex flex-col flex-grow pb-4 md:pb-0 md:flex-row md:justify-end"> <a href="#" class="px-2 py-1 text-gray-800 hover:text-gray-600">Home</a> <a href="#" class="px-2 py-1 text-gray-800 hover:text-gray-600">Artists</a> <a href="#" class="px-2 py-1 text-gray-800 hover:text-gray-600">Events</a> <a href="#" class="px-2 py-1 text-gray-800 hover:text-gray-600">Submissions</a> <a href="#" class="px-2 py-1 text-gray-800 hover:text-gray-600">Contact</a> </nav> </div> </header> <main class="container mx-auto p-4"> <h1 class="text-3xl font-bold mb-4">Welcome to our Art Gallery</h1> <p class="mb-4"> At our Art Gallery, we celebrate the beauty of art and the diversity of its creators. We are a community of artists, art lovers, and art enthusiasts who come together to share their work, learn from each other, and create something new. </p> <p class="mb-4"> Our gallery features a wide range of art pieces, from paintings and sculptures to photography and digital art. We have a diverse collection of artists, from established to emerging, and we are always on the lookout for new talent. </p> <p class="mb-4"> We also host a variety of events, from openings to exhibitions, talks, and workshops. Our events are a great opportunity to meet other artists, learn about their work, and get inspired. </p> </main> <footer class="bg-white p-4 shadow md:flex md:items-center md:justify-between"> <div class="text-sm text-gray-600"> © 2022 Art Gallery. All rights reserved. </div> <div class="text-sm text-gray-600"> Contact us: info@artgallery.com </div> </footer> </body> </html>
Art Gallery Site: A mosaic tiled layout featuring thumbnails of art pieces, artists, and events. The main menu is at the top, and the content is arranged into categories. The footer contains information about the gallery, events calendar, artist submissions, and contact details.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-between items-center"> <div class="flex items-center"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="h-10"> <nav class="ml-10"> <a href="#" class="text-gray-600 mr-5">Home</a> <a href="#" class="text-gray-600 mr-5">Courses</a> <a href="#" class="text-gray-600">About</a> </nav> </div> <div> <a href="#" class="text-gray-600 mr-5">Login</a> <a href="#" class="text-gray-600">Sign Up</a> </div> </header> <main class="p-4"> <h1 class="text-3xl mb-4">Welcome to our Online Educational Platform</h1> <p class="mb-4">Our platform is designed to provide high-quality education to individuals around the world. We offer a wide range of courses in various fields, from technology to business and beyond. Our courses are designed to be interactive and engaging, allowing you to learn at your own pace.</p> <!-- Add your course tiles here --> </main> <footer class="bg-white p-4 text-center text-gray-600"> <p>© 2022 Online Educational Platform. All rights reserved.</p> </footer> </body> </html>
Online Educational Platform: A vertical design showcasing courses as tiles, and search functionality on the left. The header features a prominent logo and easy access to user login/signup, search bar, and navigation menu. The footer contains links to various resources, user support, and contact information.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="flex flex-col items-center justify-center min-h-screen bg-gray-100"> <div class="container px-5 py-24 mx-auto flex flex-wrap"> <div class="w-full md:w-1/3 p-6 flex flex-col flex-grow flex-shrink"> <div class="flex-1 bg-white text-gray-800 rounded-t rounded-b-none overflow-hidden shadow"> <p class="w-full text-gray-600 text-xs md:text-sm px-6"> Our portfolio includes a wide range of projects, from residential to commercial, from small to large scale. We have worked on a variety of styles and designs, from traditional to modern, and we are always open to new challenges. </p> </div> </div> <div class="w-full md:w-1/3 p-6 flex flex-col flex-grow flex-shrink"> <div class="flex-1 bg-white text-gray-800 rounded-t rounded-b-none overflow-hidden shadow"> <img src="https://source.unsplash.com/random/300x200/?architecture" class="w-full" /> </div> </div> <div class="w-full md:w-1/3 p-6 flex flex-col flex-grow flex-shrink"> <div class="flex-1 bg-white text-gray-800 rounded-t rounded-b-none overflow-hidden shadow"> <p class="w-full text-gray-600 text-xs md:text-sm px-6"> We are a small, family-owned architecture firm based in New York City. Our mission is to create spaces that are not just beautiful, but also functional and sustainable. We believe that architecture should be a reflection of its place and its time, and we strive to make that a reality in every project we undertake. </p> <p class="w-full text-gray-600 text-xs md:text-sm px-6"> Contact us at info@architecturefirm.com or 123-456-7890. </p> </div> </div> </div> </body> </html>
Architecture Firm: A three-column layout. The left column displays the firm's portfolio; the middle column has a large, full-width image or video that rotates between showcasing various projects. The right column is dedicated to about the firm and contact information.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-cover bg-center h-64 flex items-center justify-center" style="background-image: url('https://source.unsplash.com/random/1600x900/?food')"> <img class="h-16" src="https://source.unsplash.com/random/100x100/?logo" alt="Logo"> </header> <nav class="bg-white p-4 shadow"> <ul class="flex space-x-4"> <li><a class="text-purple-500 hover:text-purple-700" href="#">Home</a></li> <li><a class="text-purple-500 hover:text-purple-700" href="#">About</a></li> <li><a class="text-purple-500 hover:text-purple-700" href="#">Contact</a></li> </ul> </nav> <main class="container mx-auto p-4"> <h1 class="text-3xl font-bold mb-4">Welcome to our Food Blog</h1> <p class="mb-4"> Welcome to our food blog, where we share our passion for all things food. From the best recipes to the latest food trends, we strive to provide you with the information you need to make the best decisions about what to eat. Whether you're a seasoned chef or a beginner cook, we're here to help you every step of the way. So, whether you're looking for a new recipe to try, or just want to learn something new about food, we've got you covered. </p> <!-- Blog posts go here --> </main> </body> </html>
Food Blog: A simple, one-page layout featuring a large, appetite-inducing header image, a logo in the upper left corner, and a minimal navigation bar at the top. The blog posts are displayed in a masonry grid format below the header, with a filtering feature on the left side.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-red-500 text-white p-4"> <div class="container mx-auto flex justify-between items-center"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo"> <button class="bg-white text-red-500 px-4 py-2 rounded">Donate Now</button> </div> </header> <nav class="bg-red-300 text-white p-4"> <div class="container mx-auto flex justify-between"> <a href="#">Mission</a> <a href="#">News</a> <a href="#">Donate</a> </div> </nav> <main class="container mx-auto p-4"> <div class="flex flex-col md:flex-row"> <section class="w-full md:w-1/3 p-4"> <h2 class="text-2xl mb-4">Mission</h2> <p>Our mission is to provide a platform for individuals to share their stories and experiences. We believe that every person has a unique story to tell, and we are committed to helping them tell theirs.</p> </section> <section class="w-full md:w-1/3 p-4"> <h2 class="text-2xl mb-4">News</h2> <p>Stay updated with our latest news. We are always working to improve our platform and provide the best possible service to our users.</p> </section> <section class="w-full md:w-1/3 p-4"> <h2 class="text-2xl mb-4">Donate</h2> <p>Help us continue our mission. Every donation, no matter how small, makes a difference.</p> </section> </div> </main> </body> </html>
Nonprofit Organization: A three-column layout dedicated to showcasing the organization's mission, latest news, and donation form. The header includes a prominent logo and a call-to-action button, while the secondary navigation bar at the top helps users learn more about the various initiatives and programs.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-blue-100"> <header class="w-full"> <img src="https://source.unsplash.com/random/1600x400/?tech" alt="Header Image" class="w-full"> </header> <div class="flex flex-row"> <nav class="w-1/4 bg-blue-200 p-4"> <h2 class="text-2xl text-blue-800 mb-4">Navigation</h2> <ul> <li class="mb-2"><a href="#" class="text-blue-600 hover:text-blue-800">Home</a></li> <li class="mb-2"><a href="#" class="text-blue-600 hover:text-blue-800">About</a></li> <li class="mb-2"><a href="#" class="text-blue-600 hover:text-blue-800">Services</a></li> <li class="mb-2"><a href="#" class="text-blue-600 hover:text-blue-800">Contact</a></li> </ul> </nav> <main class="w-3/4 p-4"> <h1 class="text-3xl text-blue-800 mb-4">Welcome to Our Tech Company</h1> <p class="text-gray-800 mb-4"> At our tech company, we are dedicated to providing innovative and reliable technology solutions to meet your business needs. Our team of experts is committed to delivering high-quality products and services that exceed your expectations. Whether you're looking for a new software solution, a custom-built system, or a consultation on the latest technology trends, we're here to help. </p> <h2 class="text-2xl text-blue-800 mb-4">Our Services</h2> <p class="text-gray-800 mb-4"> Our services include software development, system integration, cloud solutions, data analytics, and more. We work with a wide range of industries, from startups to large corporations, to help them leverage technology to drive their business forward. </p> <h2 class="text-2xl text-blue-800 mb-4">Contact Us</h2> <p class="text-gray-800 mb-4"> If you're interested in learning more about our services or have a project in mind, we'd love to hear from you. Please contact us using the information below. </p> </main> </div> </body> </html>
Tech Company: A modern layout with a full-width header image, a left sidebar for navigation and additional information, and a clean, minimalist design with a primary color scheme of blue and gray.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-yellow-500 text-gray-800"> <div class="flex flex-col items-center justify-center h-screen"> <img src="https://source.unsplash.com/random/800x600/?food" alt="Food Image" class="w-1/2"> <h1 class="text-4xl font-bold mt-10">Welcome to Our Food Delivery Service</h1> <p class="text-center mt-5"> At our food delivery service, we believe in the power of food to bring people together. Our mission is to provide fresh, high-quality meals to your doorstep, no matter where you are. We source our ingredients locally whenever possible, and we're committed to using sustainable packaging. Our team of experienced chefs and delivery drivers work hard to ensure that every meal is prepared with care and delivered on time. We're passionate about food and we're excited to serve you. </p> </div> <footer class="bg-red-500 text-white text-center py-4 absolute bottom-0 w-full"> <img src="https://source.unsplash.com/random/100x50/?logo" alt="Logo" class="w-1/4"> </footer> </body> </html>
Food Delivery Service: A warm and inviting design with a large, central image of a meal, a footer with a centered logo, and a color palette inspired by food ingredients such as red, green, and yellow.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-purple-500 text-white p-4 flex justify-center"> <h1 class="text-2xl font-bold">Law Firm</h1> </header> <nav class="bg-purple-300 text-white p-4"> <ul class="flex justify-center space-x-4"> <li><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Services</a></li> <li><a href="#">Contact</a></li> </ul> </nav> <div class="flex"> <aside class="bg-purple-200 text-white p-4 w-1/4"> <h2 class="text-xl font-bold mb-4">Contact Information</h2> <p>123 Main St</p> <p>Anytown, USA</p> <p>Phone: 123-456-7890</p> <p>Email: info@lawfirm.com</p> <h2 class="text-xl font-bold mb-4 mt-8">Services</h2> <p>Criminal Defense</p> <p>Family Law</p> <p>Personal Injury</p> </aside> <main class="p-4 w-3/4"> <h2 class="text-xl font-bold mb-4">About Us</h2> <p>At Law Firm, we are committed to providing our clients with the highest level of service and support. Our team of experienced attorneys are dedicated to providing you with the best possible representation in all of your legal needs. We understand that navigating the legal system can be a daunting task, which is why we are here to help. Whether you're in need of legal advice, need representation in a court case, or simply need a helping hand, we're here to assist you.</p> </main> </div> </body> </html>
Law Firm: A professional design with a centered logo, a navigation menu at the top, a left sidebar for contact information and services offered, and a color palette of blue, gray, and white.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="bg-fixed bg-center bg-cover h-screen" style="background-image: url('https://source.unsplash.com/random/1600x900/?art')"> <nav class="container mx-auto px-6 py-4"> <ul class="flex items-center justify-between"> <li><a class="text-white hover:text-pink-200" href="#">Home</a></li> <li><a class="text-white hover:text-pink-200" href="#">About</a></li> <li><a class="text-white hover:text-pink-200" href="#">Services</a></li> <li><a class="text-white hover:text-pink-200" href="#">Portfolio</a></li> <li><a class="text-white hover:text-pink-200" href="#">Contact</a></li> </ul> </nav> <div class="container mx-auto px-6 flex flex-col items-center justify-center h-full"> <h1 class="text-5xl font-bold text-white leading-tight">Welcome to Our Creative Agency</h1> <p class="text-2xl text-white">We are a full-service creative agency specializing in art supplies. Our team of experts will help you create a visually striking layout with a full-width background image, a diagonal navigation menu, and a bold, colorful design with a palette inspired by art supplies.</p> </div> </div> </body> </html>
Creative Agency: A visually striking layout with a full-width background image, a diagonal navigation menu, and a bold, colorful design with a palette inspired by art supplies.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100"> <header class="bg-white p-4 flex justify-center"> <img src="https://source.unsplash.com/random/300x100/?logo" alt="Logo"> </header> <nav class="bg-white p-4 flex justify-center"> <ul class="flex space-x-4"> <li><a href="#" class="text-gray-600 hover:text-gray-900">Home</a></li> <li><a href="#" class="text-gray-600 hover:text-gray-900">About</a></li> <li><a href="#" class="text-gray-600 hover:text-gray-900">Contact</a></li> </ul> </nav> <main class="flex"> <aside class="w-1/4 bg-white p-4"> <h2 class="text-xl mb-4">Property Listings</h2> <!-- Add property listings here --> </aside> <section class="w-3/4 p-4"> <h1 class="text-2xl mb-4">Welcome to our Real Estate Agency</h1> <p class="mb-4"> At our real estate agency, we are committed to providing our clients with the best possible service. We understand that buying or selling a home is a big decision, and we are here to help you every step of the way. </p> <!-- Add more content here --> </section> </main> <footer class="bg-white p-4 flex justify-center"> <p class="text-gray-600">© 2022 Real Estate Agency. All rights reserved.</p> </footer> </body> </html>
Real Estate Agency: A clean, minimalist design with a centered logo, a top navigation menu, a left sidebar for property listings, and a neutral color palette of white, gray, and black.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="flex flex-col min-h-screen"> <header class="bg-purple-500 text-white p-4"> <h1 class="text-2xl font-bold">E-commerce Store</h1> <nav class="mt-4"> <ul class="flex space-x-4"> <li><a href="#" class="text-white hover:underline">Home</a></li> <li><a href="#" class="text-white hover:underline">Products</a></li> <li><a href="#" class="text-white hover:underline">About Us</a></li> <li><a href="#" class="text-white hover:underline">Contact</a></li> </ul> </nav> </header> <main class="flex-grow p-4"> <div class="flex flex-col items-center"> <img src="https://source.unsplash.com/random/800x600/?ecommerce" alt="E-commerce Store" class="w-full max-w-lg mb-4"> <p class="text-center text-lg"> Welcome to our e-commerce store, where we offer a wide range of high-quality products at affordable prices. We pride ourselves on our excellent customer service and our commitment to providing our customers with the best possible shopping experience. Whether you're looking for the latest fashion trends, cutting-edge technology, or unique gifts, we've got you covered. Browse our collection and find the perfect products for you. </p> </div> </main> <footer class="bg-purple-500 text-white p-4 text-center"> <p>© 2022 E-commerce Store. All rights reserved.</p> </footer> </div> </body> </html>
E-commerce Store: A shopper-friendly design with a large, central product image, a left-aligned menu with quick links to different categories, and a bright, appealing color palette inspired by the products being sold.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-red-100"> <header class="flex justify-center items-center h-64 bg-green-500"> <img src="https://source.unsplash.com/random/300x200/?classroom" alt="Classroom" class="h-48"> </header> <main class="flex justify-center items-center h-screen"> <div class="w-1/2 p-4 bg-yellow-500"> <h1 class="text-4xl text-center">Welcome to our Education Platform</h1> <p class="text-center"> At our education platform, we believe in the power of education to transform lives. We provide a welcoming and informative environment for students to learn and grow. Our platform offers a wide range of courses in various subjects, from science to literature, from math to art, and everything in between. Our experienced and dedicated instructors are here to help you every step of the way. Join us today and start your journey towards a brighter future. </p> </div> <aside class="w-1/2 p-4 bg-red-500"> <h2 class="text-2xl text-center">Additional Information</h2> <p class="text-center"> Our platform is designed to be user-friendly and accessible to all. We offer a variety of courses at different levels, from beginner to advanced. We also offer flexible scheduling and online learning options. Our instructors are experienced professionals who are passionate about teaching. We believe in the power of education to change lives, and we are committed to helping you achieve your goals. </p> </aside> </main> </body> </html>
Education Platform: A welcoming and informative design with a header image of students in a classroom, a centered logo, a right sidebar for additional information, and a color palette of blue, green, and yellow.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <header class="w-full h-64 bg-cover bg-center" style="background-image: url('https://source.unsplash.com/random/1600x900/?travel')"> <nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6"> <div class="flex items-center flex-shrink-0 text-white mr-6"> <span class="font-semibold text-xl tracking-tight">Travel Agency</span> </div> <div class="w-full block flex-grow lg:flex lg:items-center lg:w-auto"> <div class="text-sm lg:flex-grow"> <a href="#destinations" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> Destinations </a> <a href="#about" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4"> About Us </a> <a href="#contact" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white"> Contact </a> </div> </div> </nav> </header> <main class="container mx-auto px-4 py-8"> <section id="destinations" class="my-8"> <h2 class="text-3xl font-bold mb-4">Popular Destinations</h2> <!-- Add your destinations here --> </section> <section id="about" class="my-8"> <h2 class="text-3xl font-bold mb-4">About Us</h2> <p class="text-lg"> At Travel Agency, we are passionate about travel and helping our clients discover the world. We believe that travel is not just about reaching a destination, but about experiencing different cultures, landscapes, and people. We offer a wide range of travel packages to suit every taste and budget. Whether you're looking for a romantic getaway, a family vacation, or an adventure, we're here to help you plan your next trip. </p> </section> <section id="contact" class="my-8"> <h2 class="text-3xl font-bold mb-4">Contact Us</h2> <!-- Add your contact form here --> </section> </main> </body> </html>
Travel Agency: An immersive design with a full-width header image of a beautiful travel destination, a left-aligned menu with quick links to popular destinations, and a vibrant color palette inspired by different cultures and landscapes.
<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="flex flex-col md:flex-row"> <div class="w-full md:w-1/4 bg-red-500 text-white p-4"> <img src="https://source.unsplash.com/random/300x200/?heart" alt="Logo" class="w-full"> <h1 class="text-2xl font-bold mt-4">Nonprofit Organization</h1> <p class="mt-2"> At Nonprofit Organization, we believe in the power of love and community. We are committed to making a difference in the world, one person at a time. We believe that everyone deserves a chance to be heard, to be seen, and to be valued. </p> </div> <div class="w-full md:w-3/4 p-4"> <nav class="flex justify-center space-x-4 mb-4"> <a href="#" class="text-pink-500 hover:text-pink-700">Home</a> <a href="#" class="text-pink-500 hover:text-pink-700">About</a> <a href="#" class="text-pink-500 hover:text-pink-700">Programs</a> <a href="#" class="text-pink-500 hover:text-pink-700">Contact</a> </nav> <div class="flex flex-col md:flex-row"> <div class="w-full md:w-1/3 bg-green-500 text-white p-4"> <h2 class="text-xl font-bold mb-2">Our Mission</h2> <p> Our mission is to provide a safe and supportive environment for individuals and families, regardless of their background or circumstances. We strive to create a community where everyone feels valued and accepted. </p> </div> <div class="w-full md:w-2/3 p-4"> <h2 class="text-xl font-bold mb-2">Our Programs</h2> <p> We offer a variety of programs to meet the needs of our community. These include but are not limited to: education, health, and wellness programs. We believe that everyone has the potential to learn and grow, and we are committed to providing the resources and support needed to do so. </p> </div> </div> </div> </div> </body> </html>
Nonprofit Organization: A heartfelt and impactful design with a centered logo, a top navigation menu, a left sidebar for information about the organization's mission and programs, and a color palette of inspiring hues like red, green, and blue.
<html> <link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet"> <body class="bg-gray-100 font-sans leading-normal tracking-normal"> <div class="container w-full md:max-w-3xl mx-auto pt-20"> <div class="w-full px-4 md:px-6 text-xl text-gray-800 leading-normal" style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana"> <div class="font-sans p-4 bg-white border rounded shadow"> <div class="text-base md:text-sm text-left text-gray-800 leading-normal"> <h1 class="text-2xl">Welcome to Tech Company</h1> <p>At Tech Company, we are dedicated to providing the best in gadgets. Our mission is to make technology more accessible and affordable for everyone. We believe in the power of technology to transform lives and businesses.</p> <p>Our team of experts is committed to delivering the best products and services. We are constantly innovating and improving our products to meet the needs of our customers.</p> <p>We are proud to be a part of the global technology community and we are committed to making a difference in the world.</p> </div> </div> </div> </div> </body> </html>
Tech Company: A minimalist design with a large hero image of the latest gadget, floating navigation menu on the left, and a clean, centered layout for the product information. The footer could feature a dynamic, animating logo.

Dataset Card for WebSight

Dataset Description

WebSight is a large synthetic dataset containing HTML/CSS codes representing synthetically generated English websites, each accompanied by a corresponding screenshot.

This dataset serves as a valuable resource for tasks such as generating UI codes from a screenshot.

It comes in two versions:

  • v0.1: Websites are coded with HTML + CSS. They do not include real images.
  • v0.2: Websites are coded with HTML + Tailwind CSS. They do include real images.

Essentially, here are the improvements in version v0.2, compared to version v0.1:

  • Websites include real images (related to the context of the website!!)
  • Usage of Tailwind CSS instead of traditional CSS
  • Contains 2x more examples
  • Contains more tables
  • Better resolution for the screenshots
  • Presence of a column indicating the LLM-generated idea to create the websites
Details for WebSight-v0.1 (HTML + CSS)

Data Fields

An example of a sample appears as follows:

{
    'images': PIL.Image,
    'text': '<html>\n<style>\n{css}</style>\n{body}\n</html>',
}

where css is the CSS code, and body is the body of the HTML code. In other words, the CSS code is embedded directly within the HTML code, facilitating the straightforward training of a model.

Data Splits

There is only one split, train, that contains 822,987 images and codes.

Dataset Creation

This dataset was created using Mistral-7B-v0.1 to generate random website ideas with the prompt

Generate diverse website layout ideas for different companies, each with a unique design element.
Examples include: a car company site with a left column, a webpage footer with a centered logo.
Explore variations in colors, positions, and company fields.
Don't give any explanations or recognition that you have understood the request,
just give the list of 10 ideas, with a line break between each.

which were then passed to Deepseek-Coder-33b-Instruct with the prompt

Create a very SIMPLE and SHORT website with the following elements: {idea}
Be creative with the design, size, position of the elements, columns, etc...
Don't give any explanation, just the content of the HTML code `index.html` starting with `<!DOCTYPE html>`,
followed by the CSS code `styles.css` starting with `/* Global Styles */`.
Write real and short sentences for the paragraphs, don't use Lorem ipsum.
When you want to display an image, don't use <img> in the HTML, always display a colored rectangle instead. 

Following these steps, the HTML and CSS codes were extracted from the outputs of Deepseek-Coder and formatted into the structure '<html>\n<style>\n{css}</style>\n{body}\n</html>'.

Details for WebSight-v0.2 (HTML + Tailwind CSS)

Data Fields

An example of a sample appears as follows:

{
    'images': PIL.Image,
    'text': '<html>\n<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">\n{body}\n</html>',
}

where body is the body of the HTML code, containing directly the Tailwind CSS code and facilitating the straightforward training of a model.

Data Splits

There is only one split, train, that contains TO DO images and codes.

Dataset Creation

TO DO.

For now, the creation of the dataset is documented in the technical report.

Terms of Use

By using the dataset, you agree to comply with the original licenses of the source content as well as the dataset license (CC-BY-4.0). Additionally, if you use this dataset to train a Machine Learning model, you agree to disclose your use of the dataset when releasing the model or an ML application using the model.

Licensing Information

License CC-BY-4.0.

Citation Information

If you are using this dataset, please cite our technical report

@misc{laurençon2024unlocking,
      title={Unlocking the conversion of Web Screenshots into HTML Code with the WebSight Dataset}, 
      author={Hugo Laurençon and Léo Tronchon and Victor Sanh},
      year={2024},
      eprint={2403.09029},
      archivePrefix={arXiv},
      primaryClass={cs.HC}
}
Downloads last month
374
Edit dataset card

Models trained or fine-tuned on HuggingFaceM4/WebSight

Collection including HuggingFaceM4/WebSight