html - What is the use of href="/"? in anchor tag? -
i've seen in many website , wondering does. if clear doubt great. in advance.
there 3 types of http urls (hyperlinks):
- absolute, includes full domain :
http://example.com/folder/foo.htm - relative current document:
folder/foo.bar - relative current domain:
/folder/foo.bar- note/@ beginning.
this url / belongs third group - defines default document @ domain root.
so click on <a href="/">go home</a> navigate domain frontpage.
Comments
Post a Comment