Advertisement
Guest User

Untitled

a guest
Aug 11th, 2015
1,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. HTML5 Game
  2. HTML: Interface
  3. Javascript: Logic
  4.  
  5. Softwares:
  6. Google Chrome: https://www.google.com/intl/en/chrome/browser/
  7. Notepad++: http://notepad-plus-plus.org/download/
  8.  
  9. HTML Elements
  10. text: span <span> TEXT </span>
  11. container: div <div> CONTENT </div>
  12. button: button <button> TEXT </button>
  13. link: a <a> TEXT </a>
  14. canvas: canvas <canvas>
  15. image: img <img>
  16. break-line: br <br>
  17. input: input <input>
  18.  
  19. HTML Attributes:
  20. id
  21. style
  22. href <a> only
  23. src <img> only
  24.  
  25. <div> CONTENT </div>
  26. <div attr="value" attr2="value2"> CONTENT </div>
  27.  
  28.  
  29. <a href="http://rainingchain.com/">RainingChain.com</a>
  30. <img src="https://mdn.mozillademos.org/files/3563/HTML5_Logo_128.png">
  31.  
  32.  
  33.  
  34.  
  35. HTML Style
  36. text (div, span, button, a)
  37. font:20px Arial;
  38. color:red;
  39. text-decoration:underline
  40. font-weight:bold;
  41. text-align:center;
  42.  
  43.  
  44. <span style=" attr:value; attr2:value2; "> TEXT </span>
  45.  
  46. <span style=" font:20px Arial; color:red; text-decoration:underline; font-weight:bold; "> TEXT </span>
  47.  
  48. <button style=" font:20px Arial; color:red; text-decoration:underline; font-weight:bold; "> TEXT </button>
  49.  
  50.  
  51. <div style="text-align:center;">
  52. <span style="color:red; font:30px Arial; font-weight:bold;">Game Over</span>
  53. <br>
  54. <span style="font:20px Arial;">Score: 123</span>
  55. <br>
  56. <br>
  57. <button>Play again</button>
  58. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement