Guest User

Untitled

a guest
May 27th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>Box Model</title>
  6. <link rel="stylesheet" href="style.css">
  7. <style id="jsbin-css">
  8. body {
  9. background-color: #333333;
  10.  
  11.  
  12. }
  13.  
  14. div {
  15. background-color: #c0dec5;
  16. margin: 64px;
  17. padding: 32px 48px 0px 48px;
  18.  
  19. }
  20.  
  21. span {
  22. font-variant: small-caps;
  23. font-family: "Tahoma, sans-serif";
  24. letter-spacing: .25em;
  25. padding: 0 3px;
  26. background-color: rgba(100,150,150,.5);
  27. }
  28.  
  29. p {
  30. font-family: Georgia, serif;
  31. font-size: 20px;
  32. line-height: 1.4em;
  33. }
  34.  
  35. .source {
  36. justify: right;
  37. }
  38. </style>
  39. </head>
  40.  
  41. <body>
  42. <div>
  43. <p>Build a good <span>name</span>. Keep your <span>name</span> clean. Be concerned about doing good work. Protect your work, and if you build a good <span>name</span>, eventually that <span>name</span> will be its own currency.</p>
  44. <p class="source">— William S. Burroughs’s advice to Patti Smith</p>
  45. </div>
  46.  
  47.  
  48. <script id="jsbin-source-css" type="text/css">body {
  49. background-color: #333333;
  50.  
  51.  
  52. }
  53.  
  54. div {
  55. background-color: #c0dec5;
  56. margin: 64px;
  57. padding: 32px 48px 0px 48px;
  58.  
  59. }
  60.  
  61. span {
  62. font-variant: small-caps;
  63. font-family: "Tahoma, sans-serif";
  64. letter-spacing: .25em;
  65. padding: 0 3px;
  66. background-color: rgba(100,150,150,.5);
  67. }
  68.  
  69. p {
  70. font-family: Georgia, serif;
  71. font-size: 20px;
  72. line-height: 1.4em;
  73. }
  74.  
  75. .source {
  76. justify: right;
  77. }</script>
  78. </body>
  79.  
  80. </html>
Add Comment
Please, Sign In to add comment