Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdel Hameed
3,427 PointsCheckboxes and radio are still showing as input fields
Checkboxes and radio are still showing as input fields. The password is still showing the characters. I've tried it in both Chrome and Safari. What am I doing wrong?
The following is the code: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>My Page</title> </head> <body> <form action="#" method="POST" name="my_form"> <input type=“text” name=“username"> <br> <input type=“password” name=“password"><br> <input type=“radio” name=“gender" value="Male">Male<br> <input type=“radio” name=“gender" value="Female">Female<br> <input type=“checkbox” name=“foods" value="Grapes">Grapes<br> <input type=“checkbox” name=“foods" value="Apples">Apples<br> <input type=“checkbox” name=“foods" value="Oranges">Oranges<br> </form>
</body> </html>
Adel Hameed
3,427 PointsThank you for the help.
Regards,
Adel
1 Answer
Dennis Skoko
12,860 PointsIt seems your code didn't make it trough. You can use Codepen to give us your code and I also suggest you use HTML Validator to see what the problem is. My guess is that you made a typo and didn't close a tag that messes up the other ones.
Hope that helps! Regards, Dennis.
Adel Hameed
3,427 PointsThank you for the help. It worked, I copied and pasted the exact code from Codepen to the file in Sublime and it worked.
Regards, Adel
James Barnett
39,199 PointsJames Barnett
39,199 PointsThe forum uses markdown to correctly format code, check out this thread on how to type code in the forum for some examples.