Advertisement
Guest User

Untitled

a guest
May 26th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="description" content="Flexbox Examples: Centering">
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <title>JS Bin</title>
  8. <style id="jsbin-css">
  9. body{
  10.  
  11. }
  12.  
  13.  
  14.  
  15. /* basic styles */
  16. body{
  17. font-family: sans-serif;
  18. font-weight: bold;
  19. }
  20.  
  21. .one{
  22. background-color: tomato;
  23. padding: 20px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div class="one">ONE</div>
  29.  
  30.  
  31. <script id="jsbin-source-css" type="text/css">body{
  32.  
  33. }
  34.  
  35.  
  36.  
  37. /* basic styles */
  38. body{
  39. font-family: sans-serif;
  40. font-weight: bold;
  41. }
  42.  
  43. .one{
  44. background-color: tomato;
  45. padding: 20px;
  46. }
  47. </script>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement