Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<card-form>>
  <input slot="number">
  <input slot="month">
  <input slot="year">
</card-form>
<script>
  const shost = document.querySelector('card-form');
  shost.attachShadow({mode: 'open'});
  shost.shadowRoot.innerHTML = `
    <label>Number<slot name="number"></slot></label>
    <label>Month</label><slot name="month"></slot><label>Year</label><slot name="year"></slot>
`;  
</script>
Output

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

Dismiss x
public
Bin info
tomalecpro
0viewers