Survey Form - Build a Survey Form

I’m struggling to understand what they mean with the placeholder value and attribute.

Your code so far

<!-- file: index.html -->
<h1 id="title">Title</h1>
<p id="description">Description</p>
<form id="survey-form" textarea="text"><input id="name" required>
<input type="text" id="name" name="name" placeholder="e.g. Mike Shinoda">
<input id="email" type="email" required>
<input id="number" type="number" min="0" max="9">
<label id="name-label">Enter name here</label>
  <label id="email-label">Enter email here</label>
    <label id="number-label">Enter number here</label>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36

Challenge Information:

Survey Form - Build a Survey Form

<input id="email" name="email" type="email" placeholder="Your Email address">.
the placeholder value and attribute

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.