Can anyone guide me on setting up horizontal tabs similar to the design in this image: https://i.sstatic.net/ewXO4.png?
Below is the code snippet:
<label class="formlabel">Title 1:</label>
<div id="radio_form">
<label><input type="radio" value="1" name="status">Activated</label>
<br>
<label><input type="radio" value="0" name="status">Deactivated</label>
<br><br>
</div>
<label class="formlabel">Title 2:</label>
<input name="input2" type="text" class="forminput" />
<label class="formlabel">Title 3:</label>
<input name="input3" type="text" class="forminput" />
<input class="formsubmit" type="submit" name ='submit' value="Save">
I am looking to place title/input 3 on tab 2, is it possible through CSS by manipulating divs and styles?
If there's a solution incorporating jQuery or JavaScript, please feel free to share.
Any assistance will be greatly appreciated. Thank you in advance.