CSS selectors are used to select HTML elements that you want to style.
Element selector, ID selector, and Class selector.
p {
color: red;
}
#title {
color: royalblue;
text-align: center;
}
.box {
background: lightyellow;
padding: 10px;
}