xhtmlTest.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <link rel="stylesheet" href="stylesheets/generic.css" type="text/css"/>
  5. <script type="text/javascript" src="javascripts/prototype.js"></script>
  6. <script type="text/javascript" src="javascripts/effects.js"></script>
  7. <title>XHTML Test Page</title>
  8. </head>
  9. <body>
  10. <div class="navigation">
  11. <p><a href="resultPage.html" target="result" name="windowOne">Open new window</a></p>
  12. <p><a href="iframes.html" target="_blank" name="windowTwo">Create a new anonymous window</a></p>
  13. <p><a href="iframes.html" name="sameWindow">Open page with iframes in same window</a></p>
  14. <p><a href="javascriptPage.html" target="result" name="windowThree">Open a window with a close button</a></p>
  15. </div>
  16. <div class="content">
  17. <h1 class="header">XHTML Might Be The Future</h1>
  18. <p>If you'd like to go elsewhere then <a href="resultPage.html">click me</a>.</p>
  19. <p>Alternatively, <a href="resultPage.html" id="linkId">this goes to the same place</a>.</p>
  20. <form name="someForm">
  21. <input id="username" type="text" value="change"/>
  22. </form>
  23. This link has the same text as another link: <a href="resultPage.html">click me</a>.
  24. </div>
  25. <div class="extraDiv">Another div starts here.<p/>
  26. <h2 class="nameA nameBnoise nameC">An H2 title</h2>
  27. <p class="nameC">Some more text</p>
  28. </div>
  29. <div>
  30. <a id="id1" href="#">Foo</a>
  31. <ul id="id2" />
  32. <span id="id3"/>
  33. </div>
  34. <div>
  35. <table id="table" ></table>
  36. </div>
  37. <span id="amazing">
  38. <div>
  39. <div>
  40. <div>
  41. <span/>
  42. <a>I have width</a>
  43. </div>
  44. </div>
  45. </div>
  46. </span>
  47. <a name="text" />
  48. <p id="spaces"> </p>
  49. <p id="empty"></p>
  50. <p id="self-closed" />
  51. <p class=" spaceAround ">Spaced out</p>
  52. </body>
  53. </html>