I don't know why but I used a heading <h1>
and then some icons using font-awesome <i>
. For some reason they do not display next to each other in one line.
The heading is in one line and the icons are below the heading.
This is the code i am using
<div id="footer">
<h1>foot</h1>
<i class="fab fa-facebook"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-youtube"></i>
</div>
#footer {
clear:both;
max-height:200px;
width: 100%;
background-color: yellow;
}
#footer i {
margin: 10px;
font-size: 30px;}