Advertisement
Guest User

test

a guest
May 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <meta name=viewport content="initial-scale=1,maximum-scale=2,minimum-scale=1,user-scalable=no,width=device-width">
  5. <style>
  6.  
  7. body {
  8. padding: 0;
  9. margin: 0;
  10. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  11. }
  12. div {
  13. width: 100%;
  14. height: 1000;
  15. background-color: green;
  16. }
  17.  
  18. h1 {
  19. color: white;
  20. }
  21.  
  22. </style>
  23.  
  24. </head>
  25.  
  26. <body>
  27.  
  28. <div>
  29. <h1>I am an <i>h1 HTML</i> tag</h2>
  30. <button onClick="onButtonClick()">
  31. Do not click me!
  32. </button>
  33. </div>
  34.  
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement