css id selector

CSS
#id{
    color:red;
}<style>
  #selector {
  color: red;
}
/* # is id selector */
</style>


<div id="selector">
<p>This is an id</p>
</div>

/*put a # infront of the id*/
/*<section id="example"></section>*/
#example{
	margin: auto;
}
Source

Also in CSS: