Advertisement
ambosdavid

What's up

Mar 29th, 2019
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Look at this - Wow!</title>
  5. <style>
  6. div {
  7. width: 300px;
  8. height: 100px;
  9. background-color: black;
  10. border: 1px solid white;
  11. }
  12.  
  13. #rotate {
  14. transform: rotateX(150deg);
  15.  
  16. }
  17. body,td,th {
  18. color: #FFFFFF;
  19. }
  20. body {
  21. background-color: #00CBE4;
  22. }
  23. </style>
  24. <meta charset="utf-8">
  25. </head>
  26. <body>
  27.  
  28. <h1>Yo what's up dawg.</h1>
  29.  
  30. <div>
  31. Woah Bro this Straight.
  32. </div>
  33. <div id="rotate">
  34. Woah Bro this Tilted.
  35. </div>
  36. <p>David Ambos, 2019.</p>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement