JSFiddle - React, Tailwind, and code Playground

by Mariya_Korotkova

HTML

<!DOCTYPE html>
<html>
<head>
<b><font color="#005500">Опрос</font></b>
</head>
<!--Здесь цвет фона почему-то не работает, но в браузер все норм -->
<body bgcolor="#c0c0c0">
<ol>
<li>Введите имя</li>
<li>Выберете пол</li>
<li>Отметьте Ваши навыки</li>
</ol>
<hr />
<form>
<p><b>Введите имя: </b> <input type="text" name="name" /></p>
<p><b>Выберете пол:</b></p>
<input type="radio" name="gender" value="male" /> Мужской <br />
<input type="radio" name="gender" value="female" /> Женский <br />
<p><b>Отметьте Ваши навыки:</b></p>
<input type="checkbox" name="point" value="1" /> HTML <br />
<input type="checkbox" name="point" value="2" /> CSS <br />
<input type="checkbox" name="point" value="3" /> JavaScript <br />
<input type="reset" name="reset" value="Сбросить" /><br/>
</form>
<hr />
<!-- Старые типы -->
<input type="button" name="button" value="Кнопка" /><br/>
<input type="file" name="file" value="Выберите файл" /><br/>
<input type="image" name="image" value="Отправить" /><br/>
https://jsfiddle.net/Mariya_Korotkova/9cq0uag4/57/#run<input type="password" name="password" /><br/>
<input type="reset" name="reset" value="Сбросить" /><br/>
<input type="submit" name="submit" value="Отправить" /><br/>
<input type="text" name="text" value="Введите текст" /><br/>
<!-- Новые типы из HTML 5 --> 
<input type="color" /><br />
<input type="date" /><br />
<!-- Не употреблется уже <input type="datetime" /><br/> -->
<input type="datetime-local" /><br/>
<input type="email" /><br/>
<input type="number" /><br/>
<input type="range" min="1" max="3" /><br/>
<input type="search" value="Поиск" /><br/>
<input type="tel" /><br/>
<input type="time" /><br/>
<input type="url" /><br/>
<input type="month" /><br/>
<input type="week" /><br/>
<textarea name="message"></textarea>
</body>
</html>