CSS selectors
What is a CSS selector?
CSS selectors are used to target the HTML elements on our web pages that we want to style.
h1 {
color: red;
background-color: black;
}
p {
color: aqua;
}
h1 is a CSS Selector , it targets the h1 element
text color=red ,...
madhavan.hashnode.dev3 min read