Advertisement
here2share

HTML center and heading

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