The Code (fresh off the presses, displaying what was used above):

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/\xhtml1/DTD/xhtml1-strict.dtd">
  2. <head>
  3. <style type="text/css">
  4. a img {
  5. border:none;
  6. }
  7. ul {
  8. list-style-type: none;
  9. }
  10. img.defaultSt {
  11. display: inline;
  12. }
  13. img.hoverSt {
  14. display: none;
  15. }
  16. li:hover img.defaultSt {
  17. display: none;
  18. }
  19. li:hover img.hoverSt {
  20. display: inline;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="navigation">
  26. <ul class="navlist">
  27. <li>
  28. <img class="defaultSt" src="http://mrg.bz/vh60HV" />
  29. <img class="hoverSt" src="http://mrg.bz/CcDOmL" />
  30. </li>
  31. </ul>
  32. </div>
  33. <h2>The Code (fresh off the presses, displaying what was used above):</h2>
  34. <?php
  35. include_once "../php/codify-function.php";
  36. // Show code ##################################################################
  37. codify(file_get_contents(__FILE__), 'html4strict');
  38. ?>
  39. </body>
  40. </html>
  41.