Hello Im stuck on a question, add an id selector for the id header-text, mind has drawn a blank on the coding for such a question?
<h1 id="header-text">Hello</h1>
This assigns the ID of “header-text” to this heading element, which can be referenced in CSS like so:
#header-text{
color:blue;
}