Tell us what’s happening:
I keep getting the same errors about the value and the decendants
Your code so far
<!-- file: index.html -->
<DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="styles.css">
<h1 id="title">Percentage of cfb sucsess</h1>
<p id="description">How many players in cfb accualy make it pro?</p>
<fieldset>
<form id="survey-form" class="survey-form"></form>
<label id="name-label">What is your name?
<input id="name" type="text" required placeholder="enter your name please"/>
</label>
<label id="email-label">
Your email<input id="email" required type="email" placeholder="Email here"/>
</label>
</fieldset>
<fieldset>
<legend>Which side of the Ball?</legend><label>offence<input name= "SOB"type="radio"/></label>
<label>defence<input name="SOB" type="radio">
</fieldset>
<fieldset>
<legend>Stats</legend>
<label id="number-label" class="Stats" >
percentage? <input id="number" type="number" min="0" max="100" placeholder="0"/>
</label>
<select id="dropdown">
<option>(OFFENCE)</option>
<option>QB</option>
<option>RB</option>
<option>WR</option>
<option>TE</option>
</select>
<select id="dropdown">
<option>(DEFENCE)</option>
<option>CB</option>
<option>DT</option>
<option>LB</option>
<option>S</option>
</select>
</fieldset>
<fieldset>
<legend>Reasons</legend>
<label>Star rating<input type="checkbox" value="checkboxes">
<label value="unchecked">college stats<input type="checkbox" value="checkboxes">
<label >NFL CAMPS<input type="checkbox" value="checkboxes" >
<label >social media platforms<input type="checkbox" checked value="checkboxes">
<label> Any other reasons
<textarea " rows="3" cols="30" placeholder="Enter extras here" ></textarea>
<label>
</fieldset>
<label><input id="submit" type="submit"></label>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form