Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Custom checkbox with ARIA">
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body>
  <div class="checkbox" id="checkBoxInput" 
    aria-labelledby="checkBoxLabel" 
    role="checkbox" 
    tabindex="0" 
    aria-checked="false">
      <i class="fa fa-square-o" aria-hidden="true"></i>
      <i class="fa fa-check-square-o" aria-hidden="true"></i>
  </div>
  <div id="checkBoxLabel">Subscribe to Newsletter?</div>
  
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
  
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
greggnakamurapro
0viewers