Advertisement
ambosdavid

Wow, Look at This ( HTML )

Mar 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 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. body,td,th {
  17. color: #FFFFFF;
  18. }
  19. body {
  20. background-color: #00CBE4;
  21. }
  22. </style>
  23. <meta charset="utf-8">
  24. </head>
  25. <body>
  26.  
  27. <h1>Yo what's up dawg.</h1>
  28.  
  29. <div>
  30. Woah Bro this shit Straight.
  31. </div>
  32. <div id="rotate">
  33. Woah Bro this shit Tilted.
  34. </div>
  35. <p>David Ambos, 2019.</p>
  36. </body>
  37. </html>
  38. <!-- Mainly copied off of w3schools.com , show them support. -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement