> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: About Forms ## Article: About Forms ## Article Link: https://dev.wix.com/docs/develop-websites-sdk/code-your-site/build-a-custom-frontend/forms/about-forms.md ## Article Content: # About Forms Forms are interactive parts of your website that let visitors enter and submit information, such as contact details, feedback, or survey responses. With forms on your Wix site, you can easily collect and manage valuable information from your site visitors. ## Ways to work with forms You can work with forms on your Wix site in 2 different ways: - [Wix Forms](#wix-forms): Create forms using [Wix Forms](https://support.wix.com/en/article/about-wix-forms) for quick setup with professional templates. - [Custom forms](#custom-forms): Build your own forms using code and page elements. ### Wix Forms Wix Forms is ideal when you need a fast, reliable solution with professional features and minimal setup. You can use Wix Forms to set up your forms quickly and efficiently and take advantage of useful features like: - A variety of form designs and templates to choose from - Easy customization of form layout in the editor - Automatic email notifications that save information to your contacts and go through the Inbox (Wix CRM) - Built-in support for payment forms, multi-step forms, and subscription forms - An out-of-the-box submission button - Auto-generated emails after submission When you add a Wix form to your site you automatically get a [starter collection](https://support.wix.com/en/article/cms-about-wix-form-collections). Depending on the form you pick, you get a collection specifically built for that form. The form fields are connected to the collection fields, so each time a visitor submits the form, their data is automatically stored in the corresponding collection field. You can view form submissions in the **Wix Form Collections** section in the **CMS** tab on your site's dashboard, or from the sidebar in the editor. For greater flexibility, you can also use the [Forms API](https://dev.wix.com/docs/sdk/backend-modules/forms/introduction.md) to customize the form functionality. For example, you can display a personalized thank you message when a visitor submits the form. > > **Note:** Without a Premium Plan, the Wix Forms app has limited features and capabilities. Learn more about [upgrading your Wix Forms app with a Premium Plan](https://support.wix.com/en/article/wix-forms-upgrading-wix-forms-with-a-premium-plan). ### Custom forms If you want a fully customized form, you can create your own by manually adding user input elements and buttons to your page. You can then use code to handle form submissions and add custom functionality. You can handle the data however you choose. For example, save it to a collection using datasets or the Data Items API, send it to external services, or use it for calculations without storing it. While building custom forms with code takes more time and effort than using Wix Forms, it offers several advantages such as: - Complete control over form design and layout - Custom validations - Advanced third-party API integrations ## See more - [Tutorial: Customize a Wix Form](https://dev.wix.com/docs/develop-websites-sdk/get-started/tutorials/user-interface/tutorial-customize-a-wix-form.md)