Sample
<form action="">
<p><label for="txt1">text box:<input type="text" name="" id="txt1"></label></p>
<textarea name="" id="" cols="30" rows="10"></textarea>
<p>性別
<label><input type="radio" name="gender" id="man" value="男" checked>男</label>
<label><input type="radio" name="gender" id="woman" value="女">女</label>
</p>
<p>
<label><input type="checkbox" name="os" value="iOS">iOS</label>
<label><input type="checkbox" name="os" value="android">Android</label>
<label><input type="checkbox" name="os" value="win">Windows</label>
<label><input type="checkbox" name="os" value="mac">Mac</label>
</p>
<p>
<select name="" id="">
<option value="">選択してください</option>
<option value="">select</option>
<option value="">select</option>
<option value="">select</option>
</select>
</p>
<p><input type="range" min="0" max="100" id="bar"></p>
<p><input type="date" name="" id=""></p>
<p><input type="week" name="" id=""></p>
<p><input type="color" name="" id=""></p>
</form>