Adding apply now button

by 1 replies
2
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
#website design #adding #apply #button
  • 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>

Next Topics on Trending Feed

  • 2

    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?