Advertisement
here2share

HTML h2 as smaller heading

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