I am looking to have the logo and name/title styled similar to the image below. Additionally, I want the logo to remain on the left side of the name/title when the display screen size is reduced (currently it moves above). Any suggestions would be greatly appreciated! Thank you!
https://i.sstatic.net/zcYuO.png
Below is my HTML Code:
<header>
<div class="row">
<div class="col-md-6">
<figure>
<img id = "title-logo" src="Images/Logo.png" width="100" height="100" class= "img-responsive" alt="Udacity_logo">
</figure>
</div>
<section class="col-md-6 text-right text-uppercase">
<h1 class="title-super text-thin">Jane Doette</h1>
<h4>Front-end Ninja</h4>
</section>
</div>
</header>
And here is my CSS:
.title-super, .text-thin {
font-size: 60px;
color: #2d3c49;
font-weight: 200;
display: flex;
flex-wrap: wrap;
margin-left: auto;
margin-right: auto;
display: block;
}
.title-logo {
margin-top: 20px;
}