I have a margin between the images and the Share us and I don't really know where it comes from. img: https://liko.tinytake.com/sf/MTU4MjUyXzk4ODk1MA
My HTML5 code:
<div id="socailMedia">
   <p>Follow us:</p>
   <div id="followImg">
       <img src="socailMedia/facebook.png" alt="followFacebook">
       <img src="socailMedia/twitter.png" alt="followTwitter">
       <img src="socailMedia/instagram.png" alt="followInstagram">
       <img src="socailMedia/pinterest.png" alt="followPinterest">
       <img src="socailMedia/google.png" alt="followGoogle">
    </div>
    <p>Share us:</p>
</div>
My CSS code:
#socailMedia{
    color:#939393;
    width: 350;
    float:left;
    margin-left: 20;
}
#socailMedia p {
     margin: 0;   
    background-color: red;
}
#followImg img{
    background-color: red;
    height: 35;
    padding:0;
    margin: 0;
}