I have a user register page in my web and i need to switch form details by radio when user select it
Like this
<form>
<label>1: <input type=radio name="userType" value="1"/></label>
<br>
<label>2: <input type=radio name="userType" value="2"/></label>
<br>
<label>3: <input type=radio name="userType" value="3"/></label>
<br>
<div class="tab-1"><input placeholder="UserType 1 Input"></div>
<div class="tab-2"><input placeholder="UserType 2 Input"></div>
<div class="tab-3"><input placeholder="UserType 3 Input"></div>
</form>
Can i do with only using html
,js
and css