“id” is unique in a page and can only apply to at most one element
#id { css declarations; }
“class” selector can apply to multiple elements
<button type="button" class="btn">Click Me</button>
.btn { css declarations; }