Какой нужно поставить тип тегу инпут в 38 задании?

0
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>HTML формы</title>
</head>
<body>

<h1>HTML формы</h1>

<form method="post" action="#" id="first_form">
<input type="text" name="login_field" placeholder="Логин">
<input type="password" name="password_field" placeholder="Пароль">
<input type="  " name="btn" placeholder="Войти">
</form>

</body>
</html>
html
css

1 ответов

0

Вот такой тип:

<input type="submit" class="btn" value="Войти">

p.s. В заданиях справа сверху есть кнопка Показать ответ.

Sign up or Log in to write an answer