This is inline CSS. it defeats the purpose of Cascading Style Sheet because you can only use it once, and difficult to maintain.
<div style="background:red;">Hello</div>
Do this instead
<div class="mytitle">Hello</div>
and in style.css
which is linked to in the html's head
.mytitle {background:red;}