All your checkboxes inside #survey-form should have a value attribute and value. i dont understand

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css" />
<h1 id="title">BIG SWEDE WINE SURVEY</h1>
<em><p id="description">Where taste meets comfort</em></p>
</head>
<body>
  <fieldset>
  <h2>Wine Survey</h2>
  <p>Please fill out this form with the required information</p>
  <form id="survey-form" method="post" action='https://register-demo.freecodecamp.org'>
  <label for="first-name" id="name-label">Enter Your First Name: <input id="name" type="text" placeholder="Your First Name" required /></label>
  <label for="last-name" id="name-label">Enter Your Last Name: <input id="name" type="text"placeholder="Your Last Name" required /></label>
  <label for="email" id="email-label">Enter Your Email: <input id="email" type="email" placeholder="email" required /></label><br>
<label for="Age" id="number-label">Enter Your Age: <input id="number" type="number" placeholder="number" min="18" max="120">
   <label for="number" id="number-label">Phone number: <input id="tel" type="number" placeholder="Phone number" required /></label> 
    <label for="file">Upload The Wine You Need : <input type="file" name="file"></label>
    <label for="bio">Provide a description:<textarea id="bio" name="bio" rows="3" cols="30" placeholder="I want to get?..."></textarea></label> 
    <fieldset>
    <legend><h3>Dirnk Type</h3></legend>
    <label for="Alcholic-Drink"><input type="radio" id="Alcholic-Drink" value="1" class="inline" name="Alcholic-Drink" >Alcholic</label>
<label for="Non-alcholic-Drink"><input type="radio" value="2" id="Non-alcholic-Drink" class="inline" name="Non-alcholic-Drink" >Non-Alcholic-Drink</label>
</fieldset>
 <fieldset>
    <legend><h4>Non-Alcholic-Dirnk Type</h4></legend>
    <label for="Drink"><input type="radio" id="Drink" class="inline" value="1" name="Alcholic-Drink" >Carbonated Drink</label>
<label for="juice"><input type="radio" id="juice" value="2" class="inline" name="Non-alcholic-Drink">Juice</label>
    </fieldset>
    <fieldset>
        <label for="Alcholic">Alcholic-Drinks
            <select id="dropdown" name="Alcholic-Drink">
<option>Whiskey</option>
<option>Brandy</option>
<option>Cognac</option>
<option>Vodka</option>
<option>Wine</option>
<option>Champangne</option>
<option>Rum</option>
<option>Spirit</option>
<option>Cream</option>
<option>Cocktail</option>
<option>Gin</option>
            </select>
             </label>
             </fieldset>
             <fieldset>
             <em><legend><h5>What's your age?</h5></legend></em>
               <input checked type="checkbox"   class="inline" value="1"><label for="age-verification">Less than (18 Years)</label>
               <input type="checkbox"  class="inline" value="2"> <label for="age-verification">Older than(18+)</label>
      </fieldset>
      <fieldset>
    <label for="terms-and-conditions"><input class="inline" type="checkbox" name="terms-and-conditions" id="terms-and-conditions" required>I accept the <a href="https://www.freecodecamp.org/news/terms-of-service/"> terms and conditions</label>
        <button type="submit" id="submit" value="Submit"></button>
        </fieldset>
      </form>
      </head>
      </body>

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

All your checkboxes inside #survey-form should have a value attribute and value.

Those are the instructions, yes. What about that is confusing?

it keeps saying im wrong no matter the value i use

You seem to have some errors in your HTML. I would use a validator and fix those issues
https://validator.w3.org/nu/#textarea

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