Code is NOT PASSING!

Tell us what’s happening:
Describe your issue in detail here.
I know that I don’t have any css so far in my file, but why I am getting all test statements checked and my project is not passing?
Should I share my code on a site maybe?

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Survey Form</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <h1 id="title">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 required id="name" type="text" placeholder="Enter your name"></label>
    <label id="email-label">Email<input required id="email" type="email" placeholder="Enter your email"></label>
    <label id="number-label"
>Age<input placeholder="Enter your age" type="number" id="number" min=18 max=120></label>
  <select id="dropdown">
    <option>Choose your fav</option>
    <option>JavaScript</option>
    <option>Python</option>
  </select>
  <input type="radio" name="front-back">
  <input type="radio" name="front-back">
  <input type="checkbox" value="value1">
  <input type="checkbox" value="value2">
  <input type="checkbox" value="value3">
  <textarea></textarea>
  <input type=submit id="submit">
  </form>
</body>
</html>
/* file: styles.css */
body{
color:red;
}
  **Your browser information:**

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

Challenge: Build a Survey Form

Link to the challenge:

Hello !
When I copy/paste your code into the exercise, one test statement is not checked, the one saying your input type = radio need a value attribut

Hope it will help you !

Big thanks!
That was helpful.

1 Like

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