Guest User

Untitled

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