index.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!doctype html>
  2. <html lang="en-GB">
  3. <head>
  4. <title>WCAG</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="shortcut icon" href="images/favicon.ico">
  8. <link href="./css/bootstrap.min.css" rel="stylesheet">
  9. </head>
  10. <style>
  11. button{ margin-top: 5px;}
  12. legend{ margin-top: 5px;font-size:inherit;}
  13. </style>
  14. <body>
  15. <div class="container">
  16. <h1>WCAG <span id="wcagVersion">2.1</span></h1>
  17. <div class="row">
  18. <div class="col-sm-12 col-lg-7">
  19. <p role="status">
  20. Showing <span class="badge bg-primary" id="returnedResults">78</span> tests categorised by <span class="badge bg-primary" id="filter">all</span> success criteria
  21. </p>
  22. </div>
  23. </div>
  24. <fieldset>
  25. <div class="row bg-light" style="padding:20px;">
  26. <div class="col-3" style="padding-left:0px;">
  27. <legend>Categorise WCAG</legend>
  28. </div>
  29. <div class="col" style="text-align:right">
  30. <button type="button" class="btn btn-primary btn-sm">all</button>
  31. <button type="button" class="btn btn-secondary btn-sm">content</button>
  32. <button type="button" class="btn btn-secondary btn-sm">custom-controls</button>
  33. <button type="button" class="btn btn-secondary btn-sm">forms-and-UI</button>
  34. <button type="button" class="btn btn-secondary btn-sm">audio-video</button>
  35. <button type="button" class="btn btn-secondary btn-sm">structure</button>
  36. <button type="button" class="btn btn-secondary btn-sm">colour</button>
  37. <button type="button" class="btn btn-secondary btn-sm">font-size</button>
  38. <button type="button" class="btn btn-secondary btn-sm">dynamic-content</button>
  39. <button type="button" class="btn btn-secondary btn-sm">keyboard</button>
  40. <button type="button" class="btn btn-secondary btn-sm">link</button>
  41. </div>
  42. </div>
  43. </fieldset>
  44. <div style="overflow-x: auto;">
  45. <table class="table">
  46. <caption class="visually-hidden">WCAG success criteria sorted by category</caption>
  47. <thead style="border-top:0px"><th>Understanding Criteria</th><th>Level</th><th>Version</th><th style="width: 40%;">Intent</th><th style="width: 40%;">Benefits</th><th>Category</th></thead>
  48. <tbody></tbody>
  49. </table>
  50. </div>
  51. </div>
  52. </body>
  53. <script src="./data/json-EN.js"></script>
  54. <script src="./scripts/script.js"></script>
  55. </html>