Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <form>
    <input type="text" name="email" id="email" placeholder="Email">
    <!-- No label method -->
    
    <label for="name" class="bad">Name:</label>
    <input type="text" name="Name" id="name" placeholder="Name">
    <!-- Display none method -->
    <label for="company" class="good">Company:</label>
    <input type="text" name="company" id="company" placeholder="Company">
    <!-- -9999px method -->
    
    <label for="position" class="good2">Position:</label>
    <input type="text" name="position" id="position" placeholder="Position">
    <!-- clip rectangle method -->
   
    <input type="submit" value="Send">
  </form>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers