PDA

View Full Version : how to link one page to another page in html using button..?



lovevashikaran
12-07-2019, 06:16 AM
Hello friends,

how to link one page to another page in html using button..?

RH-Calvin
12-09-2019, 05:20 PM
You can use the a href tag in HTML to link one page to another.

BangkokDinning
12-11-2019, 06:22 AM
To insert a link, use the <a> tag with the href attribute to indicate the address of the target page. Example: <a href="http://www.google.com"> . You can make a link to another page in your website simply by writing the file name: <a href="page2. html"> .

ORLOVA
12-11-2019, 10:28 AM
The plain HTML way is to put it in a <form> wherein you specify the desired target URL in the action attribute.

<form action="http://google.com">
<input type="submit" value="Go to Google" />
</form>

saisaanvi
12-11-2019, 12:26 PM
You can utilize a href tag to link from one page to another and syntax is

<a href="ur">keyword</a>

misthi
12-13-2019, 04:58 AM
use HREF tag