Guest User

Untitled

a guest
Nov 17th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 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: #333;
  10.  
  11. }
  12.  
  13. div {
  14. background-color: #c0dec5;
  15. margin: 64px;
  16. padding: 32px 48px 0;
  17. }
  18.  
  19. span {
  20. font-variant: small-caps;
  21. font-family: Tahoma, sans-serif;
  22. letter-spacing: 0.25em;
  23. padding: 0 3px;
  24. background-color: rgba(100, 150, 150, .5);
  25. }
  26.  
  27. p {
  28. font-family: Georgia, serif;
  29. font-size: 20px;
  30. line-height: 1.4em;
  31. }
  32.  
  33. .source {
  34. text-align: right;
  35. }
  36. </style>
  37. </head>
  38.  
  39. <body>
  40. <div>
  41. <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>
  42. <p class="source">— William S. Burroughs’s advice to Patti Smith</p>
  43. </div>
  44.  
  45.  
  46. <script id="jsbin-source-css" type="text/css">body {
  47. background-color: #333;
  48.  
  49. }
  50.  
  51. div {
  52. background-color: #c0dec5;
  53. margin: 64px;
  54. padding: 32px 48px 0;
  55. }
  56.  
  57. span {
  58. font-variant: small-caps;
  59. font-family: Tahoma, sans-serif;
  60. letter-spacing: 0.25em;
  61. padding: 0 3px;
  62. background-color: rgba(100, 150, 150, .5);
  63. }
  64.  
  65. p {
  66. font-family: Georgia, serif;
  67. font-size: 20px;
  68. line-height: 1.4em;
  69. }
  70.  
  71. .source {
  72. text-align: right;
  73. }</script>
  74. </body>
  75.  
  76. </html>
Add Comment
Please, Sign In to add comment