index.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Index page</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
  6. </head>
  7. <body>
  8. <h1>Extremely useless page</h1>
  9. <div id="core">
  10. <strong>Lorem</strong> ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim <strong>veniam</strong>, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla <strong class="super-duper">pariatur</strong>. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  11. <div id="empty">
  12. An empty <em></em> tag should be rendered with both open and close tags.
  13. </div>
  14. <div id="some-element" data-href="http://mink.behat.org">
  15. some <div>very
  16. </div>
  17. <em>interesting</em> text
  18. </div>
  19. <div class="attribute-testing">
  20. <input type="text" id="attr-elem[with-value]" with-value="some-value"/>
  21. <input type="text" id="attr-elem[without-value]" without-value/>
  22. <input type="text" id="attr-elem[with-empty-value]" with-empty-value=""/>
  23. <input type="text" id="attr-elem[with-missing]"/>
  24. </div>
  25. <div class="travers">
  26. <div class="sub">el1</div>
  27. <div class="sub">el2</div>
  28. <div class="sub">
  29. <a href="some_url">some <strong>deep</strong> url</a>
  30. </div>
  31. </div>
  32. <div class="sub">el4</div>
  33. </div>
  34. <footer>
  35. <form id="search-form">
  36. <input type="text" placeholder="Search site..." />
  37. </form>
  38. <form id="profile">
  39. <div data-custom="something">
  40. <label>
  41. <input type="text" id="user-name" name="username" />
  42. </label>
  43. </div>
  44. <input type="submit" />
  45. </form>
  46. </footer>
  47. </body>
  48. </html>