pawelwch Posted November 20, 2017 Share Posted November 20, 2017 (edited) I am learning how to make a form and I dont know how to remove these marks. I attach picture and also code: https://gist.github.com/pawelwch/4fed1a17ecd472fe8f7f0c2faf685f5f Edited November 20, 2017 by pawelwch Quote Link to comment Share on other sites More sharing options...
archive Posted November 20, 2017 Share Posted November 20, 2017 (edited) It looks like you have doubled up on the closing brackets in your input tag: <input type="text" name="mytext"/> <input type="text" name="moretext"/> /> The browser will take anything outside of the tag as text to display. In html 5, there's no need to use the slash at the end of self closing tags, a simple: <input type="text" name="mytext"> without the slash is o.k., unless you have a specific need for older html. Edited November 20, 2017 by archive Quote Link to comment Share on other sites More sharing options...
pawelwch Posted November 20, 2017 Author Share Posted November 20, 2017 thanks a lot! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.