As Wobbles already answered, the syntax of your INPUT
element is invalid.
However, 'mailto:1637206@student.ucps.k12.nc.us?subject=I would like to add a game to the website'
is also invalid because you have spaces in the value for the parameter subject
: It would be parsed as subject=I
followed by gibberish which the parser wouldn't understand; You need to encode special characters for it to be parsed reliably:
Make sure you encode all special characters. Common character encodings are below, or you can use Eric Meyer’s URL encoder tool. If you would rather learn what all the character encodings are, you can use this resource.
Common character encodings
- space =
%20
or +
(either one works)
- line break / carriage return =
%0D%0A
- question mark =
%3F
/ (forward slash) = %2F
: (colon) = %3A
You do not need to encode commas (,) or periods (.).