Nevermind, I found the solution myself with the following code in functions.php
function HelloWorldShortcode() {
return _e(‘<span class=”cp”>Free shipping</span> for all order over $100’, ‘Gecko’);
}
add_shortcode(‘helloworld’, ‘HelloWorldShortcode’);
Then I added [helloworld] shortcode to header input in theme settings.