Adding apply now button

by 9999
1 replies
  • WEB DESIGN
  • |
Ok, I am sure this is an easy one but I would like to add a "apply now" or "register" button to my website. If someone were to click on the button, it would bring them to my contact page.

I have no idea on how to do this, could someone please point me in the right direction?

Thanks
#adding #apply #button
  • Profile picture of the author Brandon Tanner
    For a regular button you can do this...

    HTML Code:
    <form action="contact.html">
    <input type="submit" value="Apply Now">
    </form>
    If you want an "image" button instead, then you can do this...

    HTML Code:
    <a href="contact.html">
    <img src="image.jpg" style="border: none">
    </a>
    Signature

    {{ DiscussionBoard.errors[7754389].message }}

Trending Topics