JSFiddle - React, Tailwind, and code Playground

by Dmitry Britan

HTML

<form>
    <input type="button" value="Кнопка" />
    <br /><br />
    <label><input type="checkbox" /> Выбор №1</label>
    <label><input type="checkbox" /> Выбор №2</label>
    <label><input type="checkbox" /> Выбор №3</label>
    <br /><br />
    
    <input type="file" />
    <br />
    
    <input type="hidden" />
    <br />
    
    <input type="password" />
    <br /><br />
    
    <label><input type="radio" /> Выбор №1</label>
    <label><input type="radio" /> Выбор №2</label>
    <label><input type="radio" /> Выбор №3</label>
    <br /><br />
    
    <input type="reset" />
    <br /><br />
    
    <input type="submit" />
    <br /><br />
    
    <input type="text" />
</form>