Survey Form - Build a Survey Form

I have a doubt and it is that at the end of the certificate project it tells me that I have to make a page similar to an example but when I complete all the points that it marks, it tells me that it is finished but I only did a skeleton without css and it sends me to next course. Is it right to leave it like this?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>OWO</title>
    <link rel="stylesheet" href="styles.css">
  </head>
  <body>
    <h1 id="title">freeCodeCamp Survey Form</h1>
    <p id="description">Thank you for taking the time 
      to help us improve the platform</p>
    <form id="survey-form">
      <label id="name-label">
        Name<input id="name" type="text" placeholder="Enter Your Name"         required>
      </label>
      <label id="email-label">
        Email<input id="email" type="email" 
        placeholder="Enter Your Email" required>
      </label>
      <label id="number-label">
        Age(optional)<input id="number" type="number" placeholder="Age" min="1" max="8" required>
      </label>
      Which option best describes your current role?
      <select id="dropdown">
        <option selected disabled>Select current Role<option>
        <option>Students<option>
        <option>Full Time Job</option>
        <option>Full Time Learner</option>
        <option>Prefer not to say</option>
        <option>Other</option>
      </select>
      <input type="radio" name="attribute" value="attribute">
      <input type="radio" name="attribute" value="attribute">
      <input type="checkbox" value="attribute">
      <input type="checkbox" value="attribute">
      <textarea></textarea>
      <input type="submit" id="submit">
    </form>
  </body>
</html>

/* 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/106.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

No, it is not. Advancing by using that approach you’ll finish the complete course but after claiming your certification everyone will be seeing that you actually don’t know to make web projects which look good at least. If someone complains about your certification you may be at least embarrassed.

So you think I should fill in what’s missing?

Yes. After all, you’re here to learn and build some projects that you may use as a reference for your future works.

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