Inline CSS styling

by danielkwood

HTML

<html>
  <head>
     <title>Adding CSS to a webpage</title>
  </head>
  <body>
     <h1 style="color:red">This heading is red.</h1>
     <h2 style="color: #FE2EF7; border: solid 1px">This heading is pink with a border</h2>
     <p style="color:blue">This text is blue.</p>
     <p style="color:green; background-color: yellow">This text is green on a yellow background</p>
  </body>
</html>