Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
61
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. div {
  13. background: #c0dec5;
  14. margin: 64px;
  15. padding: 32px 48px 0;
  16. }
  17.  
  18. span{
  19. font-variant: small-caps;
  20. font-family: Tahoma, sans-serif;
  21. letter-spacing: .25em;
  22. padding: 0 3px;
  23. background-color: rgb(100,150,150);
  24. }
  25.  
  26. p {
  27. font-family: Georgia, serif;
  28. font-size: 20px;
  29. line-height: 1.4em;
  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: #333;
  47. }
  48.  
  49. div {
  50. background: #c0dec5;
  51. margin: 64px;
  52. padding: 32px 48px 0;
  53. }
  54.  
  55. span{
  56. font-variant: small-caps;
  57. font-family: Tahoma, sans-serif;
  58. letter-spacing: .25em;
  59. padding: 0 3px;
  60. background-color: rgb(100,150,150);
  61. }
  62.  
  63. p {
  64. font-family: Georgia, serif;
  65. font-size: 20px;
  66. line-height: 1.4em;
  67. }
  68.  
  69. .source{
  70. text-align: right
  71. }</script>
  72. </body>
  73.  
  74. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement