JSFiddle - React, Tailwind, and code Playground

by Ketan Patel

HTML

<form>
  <p>With label</p>
  <br>
  <input id="349" type="radio" value="1" name="question1">
  <label for="349">Abe</label>
  <br>
  <input id="350" type="radio" value="2" name="question1">
  <label for="350">Andrew</label>
  <br>
  <input id="351" type="radio" value="3" name="question1">
  <label for="351">Andre</label>
  <br>
  <input id="352" type="radio" value="4" name="question1">
  <label for="352">Anderson</label>
  <br>
</form>
=============
<form>
  <p>Without label</p>
  <br>
  <input id="339" type="radio" value="1" name="question2">Abe
  <br>
  <input id="340" type="radio" value="2" name="question2">Andrew
  <br>
  <input id="341" type="radio" value="3" name="question2">Andre
  <br>
  <input id="342" type="radio" value="4" name="question2">Anderson
  <br>
</form>