0
How do I go to another part of the web page without having to add another html.
Please help!!!!
4 Risposte
+ 3
hide the part that you want to display latter with CSS and then use JavaScript to show it after!
+ 3
how can I get user details from a form 
 <html>
 <Head>
   <title>Bitcoin Miner</title>
    </head>
     <body>
       <img src="e9a41a49a5da6b6492db0af0f4efe3de--bitcoin-logo-bitcoin-currency.jpg" height="150px" width="150px"alt=""/>
         <div style="background-color:white;
           color:black;padding:20px;">
           <h1>BITCOIN MINER.</h1>
           <h4>Gives free bitcoin, gives free money.</h4>
            </div>
             <form>
             <label>Name:</label><br/>
               <input type="text" name="Name"><br/><br/>
               <label>Username:</label><br/>
               <input type="text" username="Username"><br/><br/>
               <label>Email:</label><br/>
               <input type="text" email="Email"><br/><br/>
               <label>Password</label><br/>
               <input type="text"="password"/><br/><br/>
               <label>Phone Number:</label><br/>
               <input type="text" phone="Name"><br/><br/>
               <label>Bitcoin address:</label><br/>
               <input type="text" name="Bitcoin address"><br/><br/>
               </form>
                 <input type="radio" name="Luno" "value"="1"/>Luno<br/>
                 <input type="radio" name="Luno" "value"="2"/>Blockchain<br/>
                 <input type="radio" name="Luno" "value"="3"/>coinbase<br/>
                 <input type="radio" name="Luno" "value"="4"/>Others<br/><br/>
                   <input type="submit" value="submit"/>
    </body>
</html>
+ 2
To make an inner page link give the tag you want to go to an id attribute then in your anchor tags href link to that id.
<h1 id="top">Title at the too of the page</h1>
......
......
......
<a href="#top">Back to top</a>
- 1
Thank You I think I get it!



