html - is there any alternated method for anchor tag?(Deleted) -


this sample html page i'm using anchor tag inside need alternate method instead of anchor tag,could tell me.

<body>     <table><tr><td>                 <a href="http://www.w3schools.com">visit w3schools.com!                     <div></div>                 </a>             </td></tr>     </table> </body> 

thanks help.

maybe use:

<form method="get" action="foo.html"> <input type="submit" /> </form> 

the difference between 2 methods: <form method="link" > or <a>? what's difference?


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -