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 trial

HTML

Matthew Schmookler
Matthew Schmookler
8,970 Points

submit button not showing

Just finished the tutorial on inputs and instead of a submit button I get a blank field with "continue" with two funny looking symbols on either side. below is my code. ideas?

<!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=“submit” value=“continue”>

    </form>
</body>

</html>

2 Answers

Alex Heil
Alex Heil
53,547 Points

hey matthew, take a look at the double quotes around submit and continue

do you notice they look different from the one's you used in the form method line? try use the exact same as in the form line and the input button will be displayed fine. hope that helps ;)

Matthew Schmookler
Matthew Schmookler
8,970 Points

AH OF COURSE! the typical copy paste from mac notepad mistake. duh! Thanks...that nailed it :)

Alex Heil
Alex Heil
53,547 Points

you're welcome matthew, good to hear this helped you out ;)

Hey Matthew,

So I first took your code and instead of setting the type to "submit", I changed it to button (without any quotation marks around it. Also, if you want to remove the quotation marks around "continue", just take the quotes off from the word "continue" when setting it as your value. Apparently they don't need them. Whether this is the standard way to do it I'm not sure but if you want to try a quick fix, this should work.

Hope that this helped!

Matthew Schmookler
Matthew Schmookler
8,970 Points

cool, that worked...and actually even with submit.