JSFiddle - React, Tailwind, and code Playground

by itsazzad

HTML

<div id="footertop">
    <p class="copyrights"> GALAXIS WORKS © 2013 </p>

    <div align="center" id="icons">
    <a href="http://twitt....." target="_blank" class="twittericon"><img src="images/logo/twittericon.png"></a>
    <a href="http://twit...." tagret="_blank" class="fbicon"><img src="images/logo/fbicon.png"/></a>
    <a href="http://twit...." tagret="_blank" class="skypeicon"><img src="images/logo/skypeicon.png"/></a>
    </div>
</div>

CSS

#footertop {
        position: fixed;
        bottom: 0;
        left: 0px;
        width: 100%;
        height: 50px;
        margin: 0 auto;
        background-color: #303030; 
}

    .copyrights {
        text-align: center;
        margin: 0px;
        font-family: "Century Gothic";
        font-size: 12px;
        color: #FFF; 
}
    #icons {
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 10em; 
}