VOOZH about

URL: https://www.geeksforgeeks.org/css/foundation-css-forms/

⇱ Foundation CSS Forms - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Foundation CSS Forms

Last Updated : 23 Jul, 2025

Foundation CSS is an open-source & responsive front-end framework built by ZURB foundation in September 2011, that makes it easy to design beautiful responsive websites, apps, and emails that look amazing & can be accessible to any device. It is used by many companies such as Facebook, eBay, Mozilla, Adobe, and even Disney. The framework is built on Saas-like bootstrap. It is more sophisticated, flexible, and easily customizable. It also comes with CLI, so it’s easy to use it with module bundlers. It offers the Fastclick.js tool for faster rendering on mobile devices.

Forms on a web page allow a user to enter data that is sent to a server for processing. Forms can resemble paper or database forms and provides the user to fill in various types of input fields such as text type, password type, number type, email type, or maybe some other type of input. Forms are generally used when you want to collect data from the user. For example, a user wants to buy a bag online, so he/she has to first enter their shipping address in the address form and then add their payment detail in the payment form to place an order.

Example 1: In this example, we create a registration form.

Output:

πŸ‘ Image
registration form

Example 2: In this example, we create a normal form.

Output:

πŸ‘ Image
 

Reference: https://get.foundation/sites/docs/forms.html

Comment