0

I am working in wordpress. I want to set site name in two colors.

My html code is :

<h1 class="site_title"> Pal Enterprice </h1>

Here I want to set Pal color as red and Enterprice color as blue. So what css have to write?

Nisarg Bhavsar
  • 946
  • 2
  • 18
  • 40

1 Answers1

0

Please check this snippet code.

h1 {
  color: #00f;
}


h1 span {
  color: #f00;
}
<h1 class="site_title"> <span>Pal</span> Enterprice </h1>