Advertisement
here2share

HTML p-elements only

Aug 13th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.27 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p.center {
  6.     text-align: center;
  7.     color: red;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12.  
  13. <h1 class="center">This heading will not be affected</h1>
  14. <p class="center">This paragraph will be red and center-aligned.</p>
  15.  
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement