I have been using an html editor to validate my website the 1 error remaining is <form name="myform"> the problem is: there is no attribute "NAME". anybody know how i can fix it my website is www.bookmarkingtool.com
"action" is a required attribute that specifies the url to submit the form to. You can leave the value empty if submitting to the same page that the form resides on, but you still have to include the attribute. It's also good practice to include the "method" attribute (either "get" or "post"). However, if omitted the form defaults to "get".