<!DOCTYPE HTML>
<html>
    <head>
    </head>
    <body>
        <div><label for="foo">Foo</label><input id="foo" type="text" onChange="alert('change')"/><label>Just a label</label></div>
        <div><label for="foobar">FooBar</label><input id="foobar" type="checkbox"/><label for="foobar">FooBar</label></div>
        <div><label for="bar">Bar</label><input id="bar" type="text"/></div>
        <fieldset>
            <legend>Legend</legend>
            <div><input id="one" name="name" type="radio" value="one"/><label for="one">one</label></div>
            <div><label for="foo">Foo</label><input id="foo" type="text"/><label>Just a label</label></div>
            <div><input id="two" name="name" type="radio" value="two"/><label for="two">two</label></div>
        </fieldset>
        <div><input type="range" max="10" min="0" step="1" value="5" tabindex="1"/></div>
        <div><input type="password" placeholder="password"/></div>
        <select>
            <option>one</option>
            <option>two</option>
        </select>
    </body>
</html>