<form action="" method="post">
<fieldset>
<legend>Title</legend>
<input type="radio" id="radio">
<label for="radio">Click me</label>
<label for="radio">
<input type="radio" id="radio">Click me
</label>
</fieldset>
</form>
<input type="text" placeholder="text" />
<label>First Name:
<input type="text" placeholder="Agent" />
</label>
<input type="email" placeholder="email" />
<input type="search" placeholder="search" />
<label><input type="radio" />Option 1</label>
<label><input type="checkbox" />Option 1</label>
<input type="url" placeholder="url" />
<input type="number" placeholder="42" />
<input type="tel" placeholder="01823" />
<input type="color" />
<input type="range" />
<input type="time" />
<input type="date" />
<input type="month" />
<input type="week" />
<input type="datetime" />
<input type="datetime-local" />
<textarea placeholder="Text area"></textarea>
<select>
<optgroup label="Group 1">
<option>Option 1</option>
</optgroup>
<option>Option 2</option>
</select>
<progress value="70" max="100">70%</progress>
<input type="submit" value="submit" />
Represents the result of a calculation or user action.
<form oninput="result.value=parseInt(a.value)+parseInt(b.value)">
<input type="range" name="b" value="50" /> +
<input type="number" name="a" value="10" /> =
<output name="result">60</output>
</form>
<div class="select-menu select-menu--block select-menu--alt select-menu--small">
<label class="visually-hidden">Child marriage and…</label>
<select class="">
<option>Spanish</option>
<option>English</option>
</select>
<div class="select-menu__arrow"></div>
</div>