“Имя ввод HTML” Ответ

Имя ввод HTML

<!-- The name attribute specifies the name of an <input> element. --!>
<!-- The name attribute is used to reference elements in a JavaScript, or to reference form data after a form is submitted. --!>
<!-- Note: Only form elements with a name attribute will have their values passed when submitting a form. --!>

<!DOCTYPE html>
<html>
  <head>
    <title>Title/page name</title>
  </head>
  <body>
    <h1 style="display:inline;">Used in a form: ⬇️ </h1>
<form action="/action_page.php">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <input type="submit" value="Submit">
</form>
<!-- Simpy the name attribute remembers your already given values. --!>
<h2 style="display:inline;">This input will list out what have you written in inputes named: (username) when you click in it: </h2><input type="text" name="username">
  </body>
</html>
Different Dog

Входное имя html

<input type='text' placeholder="Name">
Vihaking

Ответы похожие на “Имя ввод HTML”

Вопросы похожие на “Имя ввод HTML”

Больше похожих ответов на “Имя ввод HTML” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования