<!-- 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>
<input type='text' placeholder="Name">