xhtmlTest.html 1.9 KB

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