0
How to make a link.
i want to know that if i make a webpage and after that i will put a link in it.Then that link will direct the user to another webpage.what would i do to direct the user to another webpage through the link in my first webpage
7 Réponses
+ 5
<a href="the link">Some Text</a>
This code means that when the user clicks the writing "Some Text" they will be directed to the link.
+ 5
You just need to create a webpage and post the link to that webpage.
+ 1
you make links with <a href=""> </a> in html.
lets say you want to redirect the user to solorlearn.com. just do this.
<a href="www.sololearn.com">visit sololearn </a>
there are other attributes you can add to the <a href=""> to suit your needs.
0
when the user gets directed to a new tab then how will i create that new webpage
0
thanks for helping me
0
you will create the new page by creating a new file .. then link it from your old file to a new file.
example:
you already have oldfile.html and in old file, you should put this code
<a href="www.sololearn.com/newfile.html">visit sololearn newfile </>
Then create a newfile.html. once you click on d link on the oldfile.html, it will redirect you to the newfile.html.
0
how would i use notepad to create a webpage