This is my submit button right now:
<input name="Submit2" type="submit" value="Submit">
I want to make it a jpg
Printable View
This is my submit button right now:
<input name="Submit2" type="submit" value="Submit">
I want to make it a jpg
Try this::)Code HTML4Strict:<input src="image.jpg" name="Submit2" value="" type="image">
Ben, you forgot the important alt attribute, which is required for image inputs! :(
Code HTML4Strict:<input type="image" name="Submit2" src="image.jpg" alt="Submit" value="Submit">
thank you! it worked perfectly