I'm struggling to add text on the right side of my header. I have placed small images on the right side of the header, slightly below, and now I want to insert some text above them but I can't seem to get it to work.
This is what I'm trying to achieve:
Is this a padding or margin issue?
<body>
<div class="container">
<div class="header"><b style="font-size:20px; float: right">'RAASHFC' to 56161</b>
<a href="#Raas"><img src="img/Raas.png" class="logo"></img></a>
<a href="#insta"><img src="img/insta.png" class="social"></img></a>
<a href="#tw"><img src="img/twitter.png" class="social"></img></a>
<a href="#fb"><img src="img/facebook.png" class="social"></img></a>
</div>
.css source
.social {
float: right;
width: 50px;
height: 25px;
margin-left: 10px;
margin-top: 75px;
text-decoration: none;
}
Can anyone assist me with this?