skip to Main Content

I am creating a website for our college students. I am trying to link my signup button with the signup page but can’t add the page.this is the image of coding that I used

I tried to create a signup page by linking the signup button and expected that page shall be added but That was totally wrong,The button is not Linking with the signup page

2

Answers


  1. two things

    1. check that the signup form is in the same directory as ur current html file
    2. make sure you spelled the signup form’s file name right

    also anchor tags are by default clickable, you can also remove the button

    Login or Signup to reply.
  2. While your code is mostly correct, the inside the tag is not the most semantically correct practice.
    <a href = "Signup form.html"> <button type="button">Signup</button> </a>
    try it instead of that…
    And most important is check your file path.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search