-1

Can we create a relative link in HTML? For example, how can I write a relative URL on this page

http://www.example.com/dir/sub-dir

to this sub page

http://www.example.com/dir/sub-dir/sub-sub-dir

Is this even possible in HTML?

Paul Roub
  • 36,322
  • 27
  • 84
  • 93
abbas
  • 6,453
  • 2
  • 40
  • 36

2 Answers2

2

You could do:

<a href="./sub-sub-dir">LINK1</a>

or just

<a href="sub-sub-dir">LINK2</a>

http://www.w3.org/TR/WD-html40-970917/htmlweb.html

Mardie
  • 1,663
  • 17
  • 27
1

Well.... just write it relative:

<a href="sub-sub-dir">Text</a>
mhutter
  • 2,800
  • 22
  • 30