JSFiddle - React, Tailwind, and code Playground

by richlewis14

HTML

<div class="container">
 <div class="row">
     <div class="span12">
         <div id="footer">
         <ul id="info">
             <li>Website by Fishplate</li>
             <li>Email:[email protected]</li>
         </ul>
             
         </div>
         
             
     </div><!--End of Span 12-->
</div><!-- End of row-->
</div><!--End of container-->

CSS

.row {
  margin-left: -20px;
  *zoom: 1;
}
.row:before,
.row:after {
  display: table;
  content: "";
}
.row:after {
  clear: both;
}
[class*="span"] {
  float: left;
  margin-left: 20px;
}
.container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}
.span12 {
  width: 940px;
}

.container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1;
}
.container:before,
.container:after {
  display: table;
  content: "";
}
.container:after {
  clear: both;
}
#footer{
    background:url("http://46.32.253.11/assets/paper.png");
    height:40px;
}

#info li{
    display:inline;
    padding:10px;
    color:#211256;
}