Почему на задании 38 я не могу выровнять текст?

0

Я не могу выровнять текст что бы закончить предложение и выполнить задание

html
css

1 ответов

1

Там же в 38 html форма, нужно кнопку просто добавить:

<!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="submit" class="btn" value="Войти">
    </form>
    
</body>
</html>
Sign up or Log in to write an answer