Paste inside header
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"/> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
Replace those orange colored text by your links. Add more <li>tags to create more Social links such as linkedIn or youtube or vk
If you dont know how to do that follow these steps.
Main code
<div id="OuterBox" class="w3-container"> <ul class="w3-pagination"> <li> <a href="facebook link" class="w3-blue w3-hover-light-grey"><i class="fa fa-facebook"></i> | facebook </a> </li> <li> <a href="google plus link" class="w3-red w3-hover-light-grey"><i class="fa fa-google-plus"></i> | plus+ </a> </li> <li> <a href="twitter link" class="w3-light-blue w3-hover-light-grey w3-text-white"><i class="fa fa-twitter"></i> | twitter </a> </li> </ul> </div>
Also try
Only icon with mouse over style
<style>
.codepp {
}
.codepp:hover{
transform:scale(1.2,1.2);
}
</style>
<div id="OuterBox" class="w3-container">
<ul class="w3-pagination">
<li>
<a href="facebook link" class="codepp w3-blue w3-hover-light-grey"><i class="fa fa-facebook"></i> </a>
</li>
<li>
<a href="google plus link" class="codepp w3-red w3-hover-light-grey"><i class="fa fa-google-plus"></i></a>
</li>
<li>
<a href="twitter link" class="codepp w3-light-blue w3-hover-light-grey w3-text-white"><i class="fa fa-twitter"></i> </a>
</li>
</ul>
</div>
0 comments:
Post a Comment