Button

<input type="submit">
<input type="submit" id="submit" value="submit" class="btn-submit">
<button>
<button type="button" id="button" onClick="xxx"><img src="xxx"></button>
<input type="image">
<input type="image" id="img_button" src="xxx" alt="xxx" value="xxx">
<a>
<a href="#" id="normal_link" onClick="xxx">Normal_Link</a>
Normal_Link
image link
<a href="#" id="img_link" onClick="xxx"><img src="xxx"></a>
css link
<a href="#" id="css_link" class="btn-sticky" onClick="xxx">CSS Link</a>
CSS Link

Text

<input type="text">
<input type="text" id="textbox" autocomplete="off">
<input type="password">
<input type="password" id="password" autocomplete="new-password">
<textarea>
<textarea id="textarea" row="3" col="20" style="xxx"></textarea>

Select

<select>
<select id="select" style="xxx">
  <option>option1</option>
  <option>option2</option>
  <option>option3</option>
</select>

Radio

<input type="radio">
<input type="radio" id="radio_1" name="radio">Radio_1
<input type="radio" id="radio_2" name="radio">Radio_2
Radio_1   Radio_2
<label for="radio_x">Radio_x</label>
<input type="radio" id="radio_3" name="radio"><label for="radio_3">Radio_3</label>
<input type="radio" id="radio_4" name="radio"><label for="radio_4">Radio_4</label>
  
custum radio
<input type="radio" id="radio_5" name="radio" class="radio_box" style="display: none;"><label for="radio_5" class="radio_box">Radio_5</label>
<input type="radio" id="radio_6" name="radio" class="radio_box" style="display: none;"><label for="radio_6" class="radio_box">Radio_6</label>

CheckBox

<input type="checkbox">
<input type="checkbox" id="check_1" name="check">Check_1
<input type="checkbox" id="check_2" name="check">Check_2
Check_1   Check_2
<label for="check_x">Check_x</label>
<input type="checkbox" id="check_3" name="check"><label for="check_3">Check_3</label>
<input type="checkbox" id="check_4" name="check"><label for="check_4">Check_4</label>
  
custum checkbox
<input type="checkbox" id="check_5" name="check" class="check_box" style="display: none;"><label for="check_5" class="check_box">Check_5</label>
<input type="checkbox" id="check_6" name="check" class="check_box" style="display: none;"><label for="check_6" class="check_box">Check_6</label>