A placeholder helps users understand what to type into a text field.

Set the placeholder attribute to "Name" and see how it displays on the webpage.

<html>
<head><style>body {min-height: 300px;} input { font-size: 16px; } textarea { font-size: 16px; } </style></head>
<body>
  <h1>Sign up</h1>
  <input type="text" placeholder="Name">
</body>
</html>]]>

Make sure to set the placeholder with placeholder="Name".