https://i.sstatic.net/giiPr.jpg
My goal is to replicate the typography shown above. The main title is centered, while the subtitle is positioned next to the title. I managed to achieve something similar below using Bootstrap's small class.
https://i.sstatic.net/bTyYJ.jpg
The issue is that the subtitle is forcing space in the center as well. Is there a way to make it work? I understand I could absolutely position the sub-text and adjust it accordingly, but my client wants consistency across multiple pages.
Any suggestions?
This is the code snippet I have been using:
.small{
text-transform: lowercase !important;
font-style: italic !important;
font-family: times, serif !important;
}
.blue{
color: #35C4F0 !important;
}
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<h1 class="text-center text-uppercase"><span class="small blue">software </span>game <br/>development</h1>