Computer >> Computer tutorials >  >> Programming >> HTML

Using more than one CSS classes for an element in HTML


To add more than one CSS classes, you need to use the class attribute in HTML.

Example

You can try to run the following code to learn how to implement more than one CSS classes for an element in HTML −

<!DOCTYPE html>
<html>
   <head>
      <style>
         h2.myClass1 {
            background-color: black
         }
         .myClass2 {
            color: red;
         }
      </style>
   </head>
   <body>
      <h2 class = "myClass1 myClass2">Tutorialspoint</h2>
      <h3>Simply Easy Learning</h3>
   </body>
</html>