Foundation CSS Kitchen Sink Last Updated : 16 Oct, 2022 Comments Improve Suggest changes Like Article Like Report Foundation CSS is an open-source and responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to layout stunning responsive websites, apps, and emails that appear amazing and can be accessible to any device. Kitchen Sink has the foundation elements to work well on our websites and applications. let's see some foundation components. Example 1: The below example describes the Kitchen Sink Button in Foundation CSS. HTML <!DOCTYPE html> <html lang="en"> <head> <title>Foundation CSS Kitchen Sink Button</title> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css" crossorigin="anonymous"> <script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/foundation.min.js" crossorigin="anonymous"> </script> <title> Foundation CSS Kitchen Sink Button </title> </head> <body style="margin: 5rem;"> <h2 style="color: green;">GeeksforGeeks</h2> <h4>Foundation CSS Kitchen Sink Buttons</h4> <!-- Buttons (actions) --> <button type="button" class="success button">Save</button> <button type="button" class="alert button">Delete</button> <div class="button-group"> <a class="button">GFG</a> <a class="button">GFG</a> <a class="button">GFG</a> </div> </body> </html> Output: Example 2: The following code demonstrates the kitchen sink title bar. HTML <!DOCTYPE html> <html lang="en"> <head> <title>Foundation CSS Kitchen Sink Title bar</title> <!-- Compressed CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/foundation.min.css" crossorigin="anonymous"> </head> <body> <center> <h1 style="color:green;">GeeksforGeeks </h1> <strong>Foundation CSS Kitchen Sink Title bar</strong> </center> <div class="title-bar"> <div class="title-bar-left"> <button class="menu-icon" type="button"></button> <span class="title-bar-title">Foundation GFG</span> </div> <div class="title-bar-right"> <button class="menu-icon" type="button"></button> </div> </div> </body> </html> Output: Reference: https://get.foundation/sites/docs/kitchen-sink.html Comment More infoAdvertise with us Next Article Foundation CSS Kitchen Sink P pokhrajverma6266 Follow Improve Article Tags : Web Technologies CSS Foundation Foundation-Getting-Started Similar Reads Foundation CSS Kitchen Sink Menu Foundation CSS is the free, open-source front-end CSS framework used to build beautiful, responsive websites, applications, and emails that work on any type of device. It is written using HTML, CSS, and Javascript. It is used by many companies like Amazon, Facebook, Disney, etc. It uses Saas compile 2 min read Foundation CSS Kitchen Sink Tabs Foundation CSS is the frontend framework of CSS that is used to build responsive websites, apps, and emails that work perfectly on any device. It is written using HTML, CSS, and Javascript and is used by many famous companies like Amazon, Facebook, eBay, etc. It uses packages like Grunt and Libsass 3 min read Foundation CSS Kitchen Sink Grid Foundation CSS is an open-source and responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to layout stunning responsive websites, apps, and emails that appear amazing and can be accessible to any device. It is used by many companies such as Facebook, eBay, Mo 3 min read Foundation CSS Kitchen Sink Table Foundation CSS is an open-source & responsive front-end framework built by the ZURB foundation in September 2011, which makes it really easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. The framework is built on Saas-like boot 4 min read Foundation CSS Kitchen Sink Float Foundation CSS is an open-source and responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to layout stunning responsive websites, apps, and emails that appear amazing and can be accessible to any device. In this article, we will discuss the Kitchen Sink Float 2 min read Like