I have created the logo of my website as text, but the first part of my logo "hello" needs other styling than the second part "Kitty"
requirements:
- both words have to be italic, so I created a h1 class "logo-text" DONE
the seconds word "Kitty" needs to be bold NOT DONE
<h1 class="logo-text"> <a href="<?php echo home_url(); ?>" title="<?php bloginfo( 'name' ); ?>" rel="home">hello <span class="logo-text-kitty>"Kitty</span> </a> </h1>
What is the right way to make "Kitty" bold? Using a span?