CSS ID & Class:
CSS ID
The ID attribute of a document
language allows authors to assign an identifier to one element instance in the
document tree.
CSS ID selectors match an element instance
based on its identifier.
A CSS ID selector contains a "#"
immediately followed by the ID value, which must be an identifier.
How
to use
<p
id="bordered">
Then,
#bordered
{
...