Advertisement
mosaid

Untitled

Aug 20th, 2020
1,241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.42 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title></title>
  4. <style>
  5.      .myredclass{
  6.               background-color:red;
  7.               color: black;
  8.      }
  9.      .mygreenclass{
  10.               background-color:green;
  11.               color: white;
  12.      }
  13. </style>
  14. </head>
  15. <body>
  16.    <p class="myredclass" > this is a paragraph with a red background </p>
  17.    <div class="mygreenclass" > this is a div element with green background </div>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement