Design a Parent Teacher Conference Form - Step 6

Tell us what’s happening:

Hi, I can past step 6
the consolde says “5. Your input element should have placeholder attribute set to E.g., Jane Done.”
Which I did. Even resetting won’t work.

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Parent Teacher Conference Form</title>
  <link rel="stylesheet" href="./styles.css" />
</head>

<body>
  <main class="container">
    <h1 class="title center">Parent Teacher Conference Form</h1>
    <p class="description center">Please fill out the form below to help schedule your parent-teacher conference.</p>

    <form>

      <fieldset>
        <legend>Student Information</legend>
        <label for="student-name">Full Name: </label>

<!-- User Editable Region -->

        <input type="text"
        name="student-name"
        id="student-name"
       placeholder:"E.g, Jane Doe"
       required>

<!-- User Editable Region -->

      </fieldset>


    </form>
  </main>
</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0

Challenge Information:

Design a Parent Teacher Conference Form - Step 6

hello!

please review which symbol to use to set a value to the placeholder attribute. you have already done it correctly with the id attribute, try to use it as a reference.

Also please make sure the placeholder text is exactly what’s given in the instructions including punctuation and spacing.

oops, I forgot that. :person_facepalming: