How to do the place holder? help me

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<h1 id="title">
<p id="description">Survey Form
  <form id="survey-form" required select id="dropdown">
    <input id="name" type="text" required>
    <input id="email" type="email" required>
    <input id="number" type="number" required min="8" max="100000">
     <label id="name-label">Nice
    <label id="email-label">Nice
      <label id="number-label">Nice
/* 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/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44

Challenge: Build a Survey Form

Link to the challenge:

add an attribute in the input tag, like
<input id ="id" placeholder = "placeholder-text">

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