I've got two HTML pages, with one being an opening page for an application and the second being a login page. I have a button on the opening page and I want to be able to click on it and have it take me to the login page. How do I do this?
            Asked
            
        
        
            Active
            
        
            Viewed 2,048 times
        
    -1
            
            
        - 
                    1- are you asking for a simple link? – Fiffe Jun 08 '17 at 11:48
- 
                    You should NOT use – VilleKoo Jun 08 '17 at 12:27
- 
                    Don't use a button as browsers might treat them differently. If you must, style a `` tag to make it look like a button – mm4096 Oct 30 '21 at 04:22
2 Answers
1
            
            
        <a href="login.html">Login</a>
When users click on the link above, it will take them to the login page.
 
    
    
        Damien
        
- 1,582
- 1
- 13
- 24
 
     
    