Unable To Get The Result
I want that functionality in which when you click on the text, then it will take you to it's destination. here, I am able to move when I click on "ABOUT", but it's not working for "SIGN IN". Please help. Full Code:- https://www.sololearn.com/compiler-playground/W5LaASJF1G71 <html> <head> <ul> <li><a href="#about">ABOUT</a></li> <li><a href="#Sign_in">SIGN IN</a></li> </ul> </head> <body> <section id="about"> <div class="about_left"> <h1>About Us</h1> <p> <left> Thank you </left> </p> <a href="#" class="about_btn">Learn More</a> </div> </section> <!-----------sign in-------> <section> <div class="S"> <form> <h1><center><a name="Sign_in">SIGN IN</a></center></h1> <br> <h3 style="text-align: center;"> To make an order or just to know more</h3> <center> <input type="text" placeholder="Enter Your E-mail"> <input type="submit" value="submit"> </center> </form> </div> </section> </body> </html>