PageRenderTime 61ms CodeModel.GetById 32ms RepoModel.GetById 1ms app.codeStats 0ms

/glossary/glossary.html

https://bitbucket.org/caraya/html5-for-publishers
HTML | 80 lines | 75 code | 4 blank | 1 comment | 0 complexity | 18433e413705b78850a69f806150ca45 MD5 | raw file
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!doctype html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>Digital Publishing Mini-Glossary</title>
  6. <script src="modernizr-1.6.min.js"></script>
  7. <script src="glossary.js"></script>
  8. <style media="screen" type="text/css">
  9. dl {
  10. width: 400px;
  11. }
  12. dt {
  13. padding-top: 10px;
  14. padding-bottom: 5px;
  15. font-style: italic;
  16. color: red;
  17. }
  18. dd {
  19. margin-left: 1.5em;
  20. }
  21. .play-button {
  22. font-style: normal;
  23. color: blue;
  24. padding: 3px;
  25. border:2px solid;
  26. border-radius:6px;
  27. border-color: black;
  28. background-color: gray;
  29. }
  30. dt .play-button {
  31. margin-left: 6px;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <h1>Digital Publishing Mini-Glossary</h1>
  37. <p>Click the <span class="play-button">&#x25b6;</span> button to hear the
  38. pronunciation of a term</p>
  39. <!--Audio content -->
  40. <audio id="epub">
  41. <source src="audio/epub.wav" type="audio/wav"/>
  42. <source src="audio/epub.mp3" type="audio/mp3"/>
  43. <source src="audio/epub.ogg" type="audio/ogg"/>
  44. <em>(Sorry, &lt;audio&gt; element not supported in your
  45. browser/ereader.)</em>
  46. </audio>
  47. <audio id="mobi">
  48. <source src="audio/mobi.wav" type="audio/wav"/>
  49. <source src="audio/mobi.mp3" type="audio/mp3"/>
  50. <source src="audio/mobi.ogg" type="audio/ogg"/>
  51. </audio>
  52. <audio id="pdf">
  53. <source src="audio/pdf.wav" type="audio/wav"/>
  54. <source src="audio/pdf.mp3" type="audio/mp3"/>
  55. <source src="audio/pdf.ogg" type="audio/ogg"/>
  56. </audio>
  57. <div class="glossary">
  58. <dl>
  59. <dt>EPUB <input type="submit" class="play-button" id="epub_button" value="&#x25b6;"/></dt>
  60. <dd>An open standard for reflowable ebook content created and maintained by the <a
  61. href="http://idpf.org/">International Digital Publishing Forum
  62. (IDPF)</a> based on HTML, CSS, and XML technologies. Version 3.0 of
  63. EPUB will support HTML5.</dd>
  64. <dt>Mobipocket <input type="submit" class="play-button" id="mobi_button" value="&#x25b6;"/></dt>
  65. <dd>A proprietary standard for reflowable ebook content developed by <a
  66. href="http://en.wikipedia.org/wiki/Mobipocket">Mobipocket SA</a>,
  67. and used by Amazon on its hardware and software Kindle
  68. platforms.</dd>
  69. <dt>Portable Document Format (PDF) <input type="submit" class="play-button" id="pdf_button" value="&#x25b6;"/></dt>
  70. <dd>An open standard for page-based (non-reflowable) electronic documents created by Adobe Systems
  71. that has been in use since the 1990s. Many ereader devices support
  72. PDF files, as well as EPUB or Mobi.</dd>
  73. </dl>
  74. </div>
  75. </body>
  76. </html>