Search code examples
htmlcsstags

can u help me with this simple html code?


I have an h1 element in HTML "THE COOL THE MINIMAL" How to change "THE COOL" text color to green and "THE MINIMAL" text color to white. I am a beginner ty for help.


Solution

  • we can split the word into 2 and append them into the span tag and give the span tag a class of whatever property you want

    <style>
     .green-color {
      color: green
       }
      .white-color {
      color: white
       }
    </style>
    
      <h1><span class="green-color">THE COOL</span> <span class="white-color">THE MINIMAL</span></h1>