Advertisement
LegoDrifter

WebStorm 1

Jul 1st, 2020
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="css/style.css">
  9. <title>Backgrounds & borders</title>
  10.  
  11. </head>
  12. <body id="body">
  13. <div id="box-1">
  14. <h3 class="margin">Box One</h3>
  15. <p class="margin">
  16. The acceptance is an enlightened lover.<br/>
  17. One searious sainthood i give you: receive each other.<br/>
  18. Ahoy, salty amnesty!<br/>
  19. Aw, lead me ale, ye evil gibbet!<br/>
  20. </p>
  21. </div>
  22. <br>
  23. <div id="box-2">
  24. <h3 class="margin">Box Two</h3>
  25. <p class="margin">
  26. The acceptance is an enlightened lover.<br/>
  27. One searious sainthood i give you: receive each other.<br/>
  28. Ahoy, salty amnesty!<br/>
  29. Aw, lead me ale, ye evil gibbet!<br/>
  30. </p>
  31. </div>
  32. <div id="box-3">
  33. <h3 class="margin">Box Three</h3>
  34. <p class="margin">
  35. The acceptance is an enlightened lover.<br/>
  36. One searious sainthood i give you: receive each other.<br/>
  37. Ahoy, salty amnesty!<br/>
  38. Aw, lead me ale, ye evil gibbet!<br/>
  39. </p>
  40. </div>
  41. <br>
  42. <div id="box-4">
  43. <h3 class="margin">Box Four</h3>
  44. <p class="margin">
  45. The acceptance is an enlightened lover.<br/>
  46. One searious sainthood i give you: receive each other.<br/>
  47. Ahoy, salty amnesty!<br/>
  48. Aw, lead me ale, ye evil gibbet!<br/>
  49. </p>
  50. </div>
  51. </body>
  52. </html>
  53.  
  54.  
  55. #box-1
  56. {
  57. background-color: blanchedalmond;
  58. width: 300px;
  59. border: 3px dashed black;
  60. font-family: "Roboto Light", serif;
  61. font-size: 20px;
  62.  
  63. }
  64. #box-2
  65. {
  66. background: grey;
  67. color: white;
  68. width: 450px;
  69. border: 3px blue solid;
  70. border-radius: 20px;
  71.  
  72. }
  73. #box-3
  74. {
  75. background: url("./img/img1.jpg") no-repeat center center/cover;
  76.  
  77. color: white;
  78. width: 450px;
  79. height: 150px;
  80. border-radius: 10px;
  81.  
  82. }
  83. #box-4
  84. {
  85. background-image: url("./img/img3.png");
  86. width: 400px;
  87. height: 350px;
  88. color: white;
  89. -webkit-text-stroke: 1px red;
  90. background-size: cover;
  91. background-position: center center;
  92. border: 3px gray dotted;
  93. font-size: 30px;
  94.  
  95. }
  96. .margin
  97. {
  98. margin-left: 15px;
  99.  
  100. }
  101. #body
  102. {
  103. background-color: beige;
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement