Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/h-yzeng/survey-form
A survey form project built using vanilla HTML and CSS. The form is designed to collect data from individuals interested in joining a fictional coding boot camp, focused on web development pathways.
https://github.com/h-yzeng/survey-form
css css3 form forms html html-css html5 html5-css3 survey survey-form surveys
Last synced: about 2 months ago
JSON representation
A survey form project built using vanilla HTML and CSS. The form is designed to collect data from individuals interested in joining a fictional coding boot camp, focused on web development pathways.
- Host: GitHub
- URL: https://github.com/h-yzeng/survey-form
- Owner: h-yzeng
- Created: 2023-10-20T03:24:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-18T03:37:34.000Z (4 months ago)
- Last Synced: 2024-09-18T06:49:50.875Z (4 months ago)
- Topics: css, css3, form, forms, html, html-css, html5, html5-css3, survey, survey-form, surveys
- Language: HTML
- Homepage: https://h-yzeng.github.io/Survey-Form/
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Survey-Form
This is one of the required projects to earn the Responsive Web Design Certification on FreeCodeCamp.org
This survey form is used to collect data from individuals who want to attend a coding boot camp.
For this project, I built a survey form about a fictional coding boot camp focused on wed development pathways using vanilla HTML and CSS.
## User Stories / Project Requirements
The following user stories were implemented to complete this project:
1. You should have a page title in an `h1` element with an `id` of `title`.
2. You should have a short explanation in a `p` element with an `id` of `description`.
3. You should have a `form` element with an `id` of `survey-form`.
4. 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`.
5. Inside the form element, you are required to enter your email in an `input` field that has an `id` of `email`.
6. If you enter an email that is not formatted correctly, you will see an HTML5 validation error.
7. Inside the form, you can enter a number in an `input` field that has an `id` of `number`.
8. 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).
9. 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.
10. 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"`.
11. For the name, email, and number input fields, you can see placeholder text that gives a description or instructions for each field.
12. Inside the form element, you should have a `select` dropdown element with an `id` of `dropdown` and at least two options to choose from.
13. 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.
14. Inside the form element, you can select several fields from a series of checkboxes, each of which must have a `value` attribute.
15. Inside the form element, you are presented with a `textarea` for additional comments.
16. Inside the form element, you are presented with a button with `id` of `submit` to submit all the inputs.