Inline style to PHP [closed]

Why not add a CSS class to the H1?

echo '<h1 class="custom-style">' . get_the_title() . '</h1>';

then in your child theme or custom CSS, apply the style to that class:

h1.custom-style { 
    text-align:center; 
    color:#fff;
    font-size:60px; 
}

tech