To create a span title, we must surround our text in <span> brackets. This will allow us to add the background and spacing to single lines of text.
We begin our line with an opening <span> bracket, and close it with a closing bracket </span>
As these are titles, we’re unable to fit a large amount of text on one single line. To combat this, we spread the title over multiple lines. We can do this by adding a break line.
To add a break line, we enter a break snippet <br> after our closing span snippet </span>.
For example <span>Line one goes here</span><br><span>Line 2 goes here</span>
Remember to open your second line up with an opening span snippet.