JSFiddle - React, Tailwind, and code Playground

by pharma_nsk

HTML

<body>
<h2>
Запись на курсы
</h2>
<hr>
<form method="post" action="jjlkj">
<p><label for="name">Имя:</label><br>
<input type="text" id="name"></p>
<p>Язык программирования:<br>
<input type="radio" name="lang" value="C1" id="C1"><label for="C1">C++</label><br>
<input type="radio" name="lang" value="PHP" id="PHP"><label for="PHP">PHP</label><br>
<input type="radio" name="lang" value="Python" id="Python"><label for="Python">Python</label>
</p>
<p>
<label for="fg">Дополнительная информация:</label><br>
<textarea name="comment" id="fg"></textarea>
</p>
<p>
<label for="word">Секретное слово:</label><br>
<input type="password" id="word"></p>
<input type="submit" value="Отправить"> <button type="reset">Очистить</button>
</form>
<hr>
</body>