Advertisement
here2share

HTML p-style

Aug 13th, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p {
  6.     text-align: center;
  7.     color: red;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12.  
  13. <p>Every paragraph will be affected by the style.</p>
  14. <p id="para1">Me too!</p>
  15. <p>And me three!</p>
  16.  
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement