Advertisement
lemansky

Untitled

Mar 30th, 2022
772
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>
  4.             Наследяване
  5.         </title>
  6.         <meta charset="UTF-8"/>
  7.         <style>
  8.             .home-font{
  9.                 font-size:30px;
  10.                 color:green;
  11.                 text-align: center;
  12.             }
  13.         </style>
  14.     </head>
  15.     <body>
  16.         <div>
  17.             <span>
  18.                 Element without styles
  19.             </span>
  20.         </div>
  21.         <div class="home-font">
  22.             <span>
  23.                 Text inside a span, inside a div with a class
  24.             </span>
  25.             <div>
  26.                 <div>
  27.                     This div is inside another div, inside a third dive that has a class
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement