To select the element we want to style, we use the name of the element, like h1, and braces, { and }.

Select the h1 element.

<html>
<head>
<style>
h1{
color: red;  
}
p {
color: blue;    
}
</style>
</head>
<body>
<h1>Important Annoucement</h1>
   </body>
</html>
]]>