JSFiddle - React, Tailwind, and code Playground

by panchroma

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/css/bootstrap-combined.min.css">
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.0/js/bootstrap.min.js"></script>
       <div class="container">  
<div class="row">  
<div class="span12">  
<h1>Bootstrap 12 col spanning full page</h1>   
</div> 
      
<div class="span6">  
<div class="row">
    <div class="span3">123</div>
    <div class="span3">456</div>
    </div>
</div>  
<div class="span6">  
<p> Love standards. And prioritize simplicity and readability while serving content. With 3000+ unique content pages and thousands of examples, we are comprehensive. We have online practice editors to play around with the example codes.</p>   
</div>  
</div>  
           </div>

CSS

h3 {margin: 10px 0 10px 0;}  
.container{background-color:#ccc;}
.span12{
    background-color:#3c3c3c;
}
.span12 h1{color:#FE6E4C; font-weight: bold; padding: 5px;}  
.span6{background-color:#eee;}
.span6 p{padding:10px 20px;}