+ 1
class is an attribute used to identify group of elements. You will find in lot of elements with attribute tag.. html: <p class="red"> p element with class red</p> <span class="red"> span element with class red</span> css: .red{ color: red; } This will make both p and span elements red in color
21st Oct 2017, 1:24 PM
RanjOyHunTer
RanjOyHunTer - avatar