I am using Font Awesome and do not wish to add CSS with HTTP. I downloaded Font Awesome and included it in my code, yet Font Awesome is showing a bordered square box instead
you need to put font-awesome file in css folder and change
href="../css/font-awesome.css" to href="css/font-awesome.css"
One more thing You can Replace this Font-awesome css File And and try this one
.social-media{
list-style-type: none;
padding: 0px;
margin: 0px;
}
.social-media li .fa{
background: #fff;
color: #262626;
width: 50px;
height: 50px;
border-radius: 50%;
text-align:center;
line-height:50px;
}
.social-media .fa:hover {
box-shadow: 5px 5px 5px #000;
}
.social-media .fa.fa-twitter:hover{
background:#55acee;
color:#fff;
}
.social-media .fa.fa-facebook:hover{
background:#3b5998;
color:#fff;
}