{"id":20760703,"url":"https://github.com/dracula27/freecodecamp_responsivewebdesign_surveyform","last_synced_at":"2025-12-24T23:09:40.254Z","repository":{"id":231916656,"uuid":"783029969","full_name":"DrAcula27/freeCodeCamp_responsiveWebDesign_surveyForm","owner":"DrAcula27","description":"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.","archived":false,"fork":false,"pushed_at":"2024-04-07T22:56:50.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T17:17:34.241Z","etag":null,"topics":["css","css3","freecodecamp","freecodecamp-challenge","freecodecamp-curriculum","freecodecamp-front","freecodecamp-frontend","freecodecamp-project","html","html-css","html5","html5-css3"],"latest_commit_sha":null,"homepage":"https://dracula27.github.io/freeCodeCamp_responsiveWebDesign_surveyForm/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DrAcula27.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-06T18:37:37.000Z","updated_at":"2024-04-08T18:01:53.000Z","dependencies_parsed_at":"2025-01-18T05:26:19.764Z","dependency_job_id":"c715407e-d9a5-4ff6-99ac-645a96ab7ee5","html_url":"https://github.com/DrAcula27/freeCodeCamp_responsiveWebDesign_surveyForm","commit_stats":null,"previous_names":["dracula27/freecodecamp_responsivewebdesign_surveyform"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DrAcula27/freeCodeCamp_responsiveWebDesign_surveyForm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2FfreeCodeCamp_responsiveWebDesign_surveyForm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2FfreeCodeCamp_responsiveWebDesign_surveyForm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2FfreeCodeCamp_responsiveWebDesign_surveyForm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2FfreeCodeCamp_responsiveWebDesign_surveyForm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DrAcula27","download_url":"https://codeload.github.com/DrAcula27/freeCodeCamp_responsiveWebDesign_surveyForm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DrAcula27%2FfreeCodeCamp_responsiveWebDesign_surveyForm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28012096,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","css3","freecodecamp","freecodecamp-challenge","freecodecamp-curriculum","freecodecamp-front","freecodecamp-frontend","freecodecamp-project","html","html-css","html5","html5-css3"],"created_at":"2024-11-17T10:15:01.610Z","updated_at":"2025-12-24T23:09:40.232Z","avatar_url":"https://github.com/DrAcula27.png","language":"HTML","readme":"# freeCodeCamp_responsiveWebDesign_surveyForm\n\n## Live Demo\n\n[Survey Form](https://dracula27.github.io/freeCodeCamp_responsiveWebDesign_surveyForm/)\n\n## Project Information\n\nThe first of five(5) certification projects in freeCodeCamp's [Responsive Web Design course](https://www.freecodecamp.org/learn/2022/responsive-web-design/).\n\nThe course/project description from their website is as follows:\n\n\u003e 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.\n\n## Project Requirements\n\nBuild a Survey Form\nObjective: Build an app that is functionally similar to https://survey-form.freecodecamp.rocks. Do not copy this demo project.\n\nUser Stories:\n\n- [x] You should have a page title in an h1 element with an id of title\n- [x] You should have a short explanation in a p element with an id of description\n- [x] You should have a form element with an id of survey-form\n- [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\n- [x] Inside the form element, you are required to enter your email in an input field that has an id of email\n- [x] If you enter an email that is not formatted correctly, you will see an HTML5 validation error\n- [x] Inside the form, you can enter a number in an input field that has an id of number\n- [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).\n- [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\n- [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\"\n- [x] For the name, email, and number input fields, you can see placeholder text that gives a description or instructions for each field\n- [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\n- [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\n- [x] Inside the form element, you can select several fields from a series of checkboxes, each of which must have a value attribute\n- [x] Inside the form element, you are presented with a textarea for additional comments\n- [x] Inside the form element, you are presented with a button with id of submit to submit all the inputs\n- [x] Fulfill the user stories and pass all the tests below to complete this project. Give it your own personal style. Happy Coding!\n\n_Note: Be sure to add `\u003clink rel=\"stylesheet\" href=\"styles.css\"\u003e` in your HTML to link your stylesheet and apply your CSS_\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdracula27%2Ffreecodecamp_responsivewebdesign_surveyform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdracula27%2Ffreecodecamp_responsivewebdesign_surveyform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdracula27%2Ffreecodecamp_responsivewebdesign_surveyform/lists"}