http://karo.cdx.jp/doc/html/path.htm

"〜/html/"―――
┬"path1/"―――
├"path2/"―――
├"path.htm"A
└"sample.png"
―"index.html"B
┬"path3/"―――
└"index.html"C

―"index.html"D
<A href="???">???</A>

相対パス 絶対パス1 絶対パス2
A "path.htm" "http://karo.cdx.jp/doc/html/path.htm" "/doc/html/path.htm"
B "path1/index.html"
"path1/"
"http://karo.cdx.jp/doc/html/path1/index.html"
"http://karo.cdx.jp/doc/html/path1/"
"/doc/html/path1/index.html"
"/doc/html/path1/"
C "path2/index.html"
"path2/"
"http://karo.cdx.jp/doc/html/path2/index.html"
"http://karo.cdx.jp/doc/html/path2/"
"/doc/html/path2/index.html"
"/doc/html/path2/"
D "path2/path3/index.html"
"path2/path3/"
"http://karo.cdx.jp/doc/html/path2/path3/index.html"
"http://karo.cdx.jp/doc/html/path2/path3/"
"/doc/html/path2/path3/index.html"
"/doc/html/path2/path3/"

<IMG src="sample.png" width="200" height="40" alt="サンプル画像">
サンプル画像

<IMG src="http://karo.cdx.jp/doc/html/sample.png" width="200" height="40" alt="サンプル画像">
サンプル画像

<IMG src="/doc/html/sample.png" width="200" height="40" alt="サンプル画像">
サンプル画像

≪Index