https://github.com/dracula27/freecodecamp_responsivewebdesign_surveyform
This is one of the required projects to earn your certification. For this project you will build a survey form to collect data from your users.
https://github.com/dracula27/freecodecamp_responsivewebdesign_surveyform
css css3 freecodecamp freecodecamp-challenge freecodecamp-curriculum freecodecamp-front freecodecamp-frontend freecodecamp-project html html-css html5 html5-css3
Last synced: about 2 months ago
JSON representation
This is one of the required projects to earn your certification. For this project you will build a survey form to collect data from your users.
- Host: GitHub
- URL: https://github.com/dracula27/freecodecamp_responsivewebdesign_surveyform
- Owner: DrAcula27
- Created: 2024-04-06T18:37:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-07T22:56:50.000Z (about 1 year ago)
- Last Synced: 2025-01-18T05:28:39.826Z (3 months ago)
- Topics: css, css3, freecodecamp, freecodecamp-challenge, freecodecamp-curriculum, freecodecamp-front, freecodecamp-frontend, freecodecamp-project, html, html-css, html5, html5-css3
- Language: HTML
- Homepage: https://dracula27.github.io/freeCodeCamp_responsiveWebDesign_surveyForm/
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# freeCodeCamp_responsiveWebDesign_surveyForm
## Live Demo
[Survey Form](https://dracula27.github.io/freeCodeCamp_responsiveWebDesign_surveyForm/)
## Project Information
The first of five(5) certification projects in freeCodeCamp's [Responsive Web Design course](https://www.freecodecamp.org/learn/2022/responsive-web-design/).
The course/project description from their website is as follows:
> This is one of the required projects to earn your certification. For this project you will build a survey form to collect data from your users.
## Project Requirements
Build a Survey Form
Objective: Build an app that is functionally similar to https://survey-form.freecodecamp.rocks. Do not copy this demo project.User Stories:
- [x] You should have a page title in an h1 element with an id of title
- [x] You should have a short explanation in a p element with an id of description
- [x] You should have a form element with an id of survey-form
- [x] Inside the form element, you are required to enter your name in an input field that has an id of name and a type of text
- [x] Inside the form element, you are required to enter your email in an input field that has an id of email
- [x] If you enter an email that is not formatted correctly, you will see an HTML5 validation error
- [x] Inside the form, you can enter a number in an input field that has an id of number
- [x] The number input should not accept non-numbers, either by preventing you from typing them or by showing an HTML5 validation error (depending on your browser).
- [x] If you enter numbers outside the range of the number input, which are defined by the min and max attributes, you will see an HTML5 validation error
- [x] For the name, email, and number input fields, you can see corresponding label elements in the form, that describe the purpose of each field with the following ids: id="name-label", id="email-label", and id="number-label"
- [x] For the name, email, and number input fields, you can see placeholder text that gives a description or instructions for each field
- [x] Inside the form element, you should have a select dropdown element with an id of dropdown and at least two options to choose from
- [x] Inside the form element, you can select an option from a group of at least two radio buttons that are grouped using the name attribute
- [x] Inside the form element, you can select several fields from a series of checkboxes, each of which must have a value attribute
- [x] Inside the form element, you are presented with a textarea for additional comments
- [x] Inside the form element, you are presented with a button with id of submit to submit all the inputs
- [x] Fulfill the user stories and pass all the tests below to complete this project. Give it your own personal style. Happy Coding!_Note: Be sure to add `` in your HTML to link your stylesheet and apply your CSS_