Add an Accessible Date Picker

The pickdate is not working?Tell us what’s happening:

Your code so far


<body>
  <header>
    <h1>Tournaments</h1>
  </header>
  <main>
    <section>
      <h2>Mortal Combat Tournament Survey</h2>
      <form>
        <p>Tell us the best date for the competition</p>
        <label for="pickdate">Preferred Date:</label>
        
        <!-- Add your code below this line -->
       <input type="date" id=“pickdate” name="date">
        
        
        <!-- Add your code above this line -->
        
        <input type="submit" name="submit" value="Submit">
      </form>
    </section>
  </main>
  <footer>&copy; 2016 Camper Cat</footer>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (iPad; CPU OS 11_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/applied-accessibility/add-an-accessible-date-picker

Retype the quotes of the id :wink:

Thank you for the response, but it still did not work.

I changed back to pc and tried again, it worked! Thank You :wink:

1 Like

this is what did and it worked:)

Tournaments

Mortal Kombat Tournament Survey

Tell us the best date for the competition

Preferred Date:
    <!-- Add your code below this line -->
    <input type="date" id="pickdate" name="date">
    
    
    <!-- Add your code above this line -->
    
    <input type="submit" name="submit" value="Submit">
  </form>
</section>
© 2018 Camper Cat
1 Like