Style attributes allow us to apply CSS style rules to any element on our page.
Later we will see how we can extract common rules into a separate file called a stylesheet.
<p style="color:red">Some red text</p>
%p{ style: ‘color:red’} Some red text
<p style="font-weight:bold">Some bold text</p>
%p{ style: ‘font-weight:bold’} Some bold text
<p style="font-weight:bold; color:red">Some bold red text</p>
%p{ style: ‘font-weight:bold; color:red’} Some bold red text
Using your previous page.
%aside