Advertisement
lemansky

Untitled

Mar 30th, 2022
815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>
  4.             Наследяване
  5.         </title>
  6.         <meta charset="UTF-8"/>
  7.         <style>
  8.             .home-size{
  9.                 width:200px;
  10.                 height:300px;
  11.                 border:solid 3px red;
  12.                 margin:5px;
  13.                 padding:5px;
  14.             }
  15.         </style>
  16.     </head>
  17.     <body>
  18.         <div>
  19.             <span>
  20.                 element without style
  21.             </span>
  22.         </div>
  23.         <div class="home-size">
  24.             <span>
  25.                 text in a span
  26.             </span>
  27.             <div>
  28.                 <div>
  29.                     text inside a div, inside a div
  30.                 </div>
  31.             </div>
  32.         </div>
  33.     </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement