[Solved] Is my “email me” button code wrong?


You have your opening tag starting with a forward slash and no closing tag.

<FORM>
<INPUT TYPE="button" 
VALUE="click here to add a game"
onClick="parent.location='mailto:[email protected]?subject=I would like to add a game to the website'"/>
</FORM>

Start with <Input then terminate the tag with />

6

solved Is my “email me” button code wrong?