Newbie Help! How to make a button clickable?

Discussion in 'HTML & Website Design' started by Nato76, Jun 15, 2009.

  1. #1
    I'm not very good at HTML but need help with an online quiz I am trying to setup on my website. I am trying to make a Submit Button clickable so that it goes to the next page. Here is the HTML code:

    <INPUT class=submit type=submit value=Submit!>
     
    Nato76, Jun 15, 2009 IP
  2. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #2
    
    <form action="nextpage.html" method="GET">
    <input class="submit" type="submit" value="Submit!" />
    </form>
    
    Code (markup):
    Hope that helps! :)
     
    Cash Nebula, Jun 16, 2009 IP