Please how do I create a survey form?. | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

Please how do I create a survey form?.

For student

16th Nov 2019, 8:55 PM
Helen Victor
2 Respuestas
+ 3
With the <form> element, however to get the results for it you'll need more than html.
16th Nov 2019, 9:51 PM
Michael
Michael - avatar
+ 2
simple survey: <form> <input type="radio" name="gender" value="male"> Male <br> <input type="radio" name="gender" value="female"> Female <br> <input type="submit" value="Submit"> </form>
17th Nov 2019, 5:49 PM
Joshua