here's my problem.
would anyone be willing to maybe breakdown how this works, maybe do the first 1 or 2 of these and explain it to me?
Absolute vs Relative Path
Give an HTML page found at the absolute URL:
http://stungeye.com/school/index.phpIf this page contains the following collection of links, provide the equivalent absolute path for each:
1) <a href="/">Link Text</a>
2) <a href="/test/tester.php">Link Text</a>
3) <a href="test/tester.php">Link Text</a>
4) <a href="tester.php">Link Text</a>
5) <a href="/tester.php">Link Text</a>
6) <a href="?ghost=grins">Link Text</a>
7) <a href="#grinning">Link Text</a>
8) <a href="test/index.php?ghost=grins">Link Text</a>
9) <a href="/#grinning">Link Text</a>
here's a guide on URL's.
http://www.skorks.com/2010/05/what-every-developer-should-know-about-urls/idk If im understanding what i need to do here.