JSFiddle - React, Tailwind, and code Playground

by Raja Sekhar Reddy Gantla

HTML

<head>      
        <title>Sample Page</title>           
        <link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />    
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>        
        <script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script> 
    </head>   
    <body>              
        <div data-role="page">      
            <div data-role="header">         
                <h1>
                    header
                </h1>     
            </div><!-- /header -->      
            
      <div data-role="content">
      
         <div class="ui-block-a" style="margin-right: 10px;">
             <input type="radio" name="housed_only" id="housed_only" value="-1" checked="checked" />
             <label for="housed_only">Housed Students</label>              
         </div>
         <div class="ui-block-b">                                
             <input type="radio" name="housed_only" id="all_students" value="0"  />
             <label for="all_students">All Students</label>
         </div>
        
      </div><!-- /content -->      


















        </div><!-- /page -->      
    </body>