Advertisement
MetroAndroid

HTML Guide

Oct 2nd, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. Content
  5.  
  6. <h1>Really important heading!</h1>
  7. <h2>Secondary heading</h2>
  8. <h3>Tertiary heading</h3>
  9. <h4>Other heading</h4>
  10. <h5>Minor heading</h5>
  11. <h6>Very minor heading</h6>
  12.  
  13. <p>Paragraph</p>
  14.  
  15. <a href="https://modarchive.org">Check out Mod Archive!</a>
  16. <img src="/cat.png">
  17. <a href="https://link.com"><img src="img.jpg" onmouseover="this.src='hover-img.jpg'" onmouseout="this.src='img.jpg'"></a>
  18.  
  19. <strong>bold</strong>
  20. <em>italic</em>
  21. <small>smaller text</small>
  22.  
  23. <ul>
  24. <li>list1</li>
  25. <li>list2</li>
  26. <li>list3</li>
  27. </ul>
  28.  
  29. <hr> horizontal rule, linebreak
  30.  
  31. <textarea readonly="readonly" class="source" rows="20" cols="20">textbox</textarea>
  32.  
  33. <footer>
  34. <p class="timestampe"></p>
  35. </footer>
  36. </body>
  37. </html>
  38.  
  39. <script src='http://www.midijs.net/lib/midi.js'></script>
  40. <script>MIDIjs.play('path/to.your/file.mid');</script>
  41.  
  42. <script type='text/javascript' src='http://www.midijs.net/lib/midi.js'></script>
  43. <a href="#" onClick="MIDIjs.play('/midi/runescape-garden.mid');">Play</a>
  44. <a href="#" onClick="MIDIjs.stop();">Stop</a>
  45.  
  46. CSS:
  47.  
  48. a {}
  49. a:link {}
  50. a:visited {}
  51. a:hover {}
  52. a:active {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement