Advertisement
lemansky

Untitled

Mar 30th, 2022
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>
  4.             Наследяване
  5.         </title>
  6.         <meta charset="UTF-8"/>
  7.         <style>
  8.             body{
  9.                 background:#912339; /* background color */
  10.             }
  11.             p, span, div{
  12.                 font-weight:bold; /* bold text */
  13.                 background:#FFD913; /* background color  */
  14.                 margin:0; /* no extra space around the element */
  15.             }
  16.             p, span {
  17.                 text-align:justify; /* text is justified */
  18.                 font-size:24px; /* size of text */
  19.                 color:black; /* text color  */
  20.             }
  21.             div{
  22.                 border:solid 10px #45AA32; /* solid border with a specific color and thickiness */
  23.                 border-radius:5px; /* edges are rounded */
  24.             }
  25.         </style>
  26.     </head>
  27.     <body>
  28.         <p>
  29.             This is a paragraph
  30.         </p>
  31.         <div>
  32.             This is a div
  33.         </div>
  34.         <span>
  35.             This is a span
  36.         </span>
  37.     </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement