Need code help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Cameltoepro
    Confirmed User
    • Sep 2012
    • 1526

    #1

    Need code help

    I hope I am wording this right.
    How do I code this </div>
    <a href="#"><h3 class="bottom-btn-green">CLICK HERE TO COMPLETE SIGNUP</h3></a>
    </div>

    to link to a form action not a href link?
    Any help on this would be very much appreciated.
    Thank You
    Awesome Hosting At Awesome Pricing At Vacares
  • myleene
    Confirmed User
    • Oct 2013
    • 906

    #2
    See these:
    http://www.w3schools.com/tags/att_form_action.asp
    http://stackoverflow.com/questions/1...the-difference

    Comment

    • Cameltoepro
      Confirmed User
      • Sep 2012
      • 1526

      #3
      Thanks. For the help..appreciated.
      Awesome Hosting At Awesome Pricing At Vacares

      Comment

      • dobry_den
        Registered User
        • Oct 2012
        • 39

        #4
        Code:
        <form action="#">
          <input type="submit">CLICK HERE TO COMPLETE SIGNUP</input>
        </form>
        You can use CSS to make the button look like a link or line of text.

        Comment

        Working...