Advertisement
luthviar

ddppw

Jul 27th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. file : style.css
  2. .header {
  3. color: red !important;
  4. }
  5.  
  6.  
  7. file : index.html
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <title>HTML Tutorial</title>
  12. <link rel="stylesheet" type="text/css" href="css/style.css">
  13. <style type="text/css">
  14. .header {
  15. color: green;
  16. }
  17. </style>
  18. </head>
  19.  
  20. <body>
  21.  
  22. <h1 class="header" style="color:blue;">This is a heading</h1>
  23. <p>This is a paragraph.</p>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement