I am in the process of building a survey form but would like help creating spaces in between options on my form. Here is what it currently looks like.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Survey-Form</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>freeCode Camp Survey Form</h1>
<p id='description'>Thank you for taking the time to help us improve the platform</p>
<form id='survey-form'>
<fieldset>
<label for='name'>name <input id='name' type='text' required /></label>
<label for='email'>email <input id='email' type='email' required /></label>
<label for='age'>Age (Optional) <input id='email' type='text' /></label>
</fieldset>
<label for="referrer">Which option best describes your current role?
<select id="current role" name="current role">
<option value="">Select current role</option>
<option value="1">Student</option>
<option value="2">Full Time Job</option>
<option value="3">Full Time Learner</option>
<option value="4">Prefer not to say</option>
<option value="4">Other</option>
</select>
<legend>Would you recommend freeCodeCamp to a friend?</legend>
<label><input id="Definitely" type="radio" name="recommend to friend" value="Definitely" checked> Definitely</label>
<label><input id="Maybe" type="radio" name="recommend to friend" value="Maybe"> Maybe</label>
<label><input id="Not Sure" type="radio" name="recommend to friend" value="Not Sure"> Not Sure</label>
<label for="referrer">What is your favorite feature of freeCodeCamp?
<select id="Favourite Feature" name="Favourite Feature">
<option value="">Select an option</option>
<option value="1">Challenges</option>
<option value="2">Projects</option>
<option value="3">Community</option>
<option value="4">Open Source</option>
<label for="improvement">What would you like to see improved? (Check all that apply)
<select id="improvement" name="improvement">
<option value="">Select an option</option>
My label i have created at the bottom here isnāt showing on my preview. this is my full code but itās related to the last label
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Survey-Form</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>freeCode Camp Survey Form</h1>
<p id='description'>Thank you for taking the time to help us improve the platform</p>
<form id='survey-form'>
<fieldset>
<label for='name'>name <input id='name' type='text' required /></label><br>
<label for='email'>email <input id='email' type='email' required /></label><br>
<label for='age'>Age (Optional) <input id='email' type='text' /></label><br>
</fieldset>
<label for="current role">Which option best describes your current role?
<select id="current role" name="current role">
<option value="">Select current role</option>
<option value="1">Student</option>
<option value="2">Full Time Job</option>
<option value="3">Full Time Learner</option>
<option value="4">Prefer not to say</option>
<option value="4">Other</option>
</select>
<legend>Would you recommend freeCodeCamp to a friend?</legend>
<label><input id="Definitely" type="radio" name="recommend to friend" value="Definitely" checked> Definitely</label><br>
<label><input id="Maybe" type="radio" name="recommend to friend" value="Maybe"> Maybe</label><br>
<label><input id="Not Sure" type="radio" name="recommend to friend" value="Not Sure"> Not Sure</label><br>
<label for="referrer">What is your favorite feature of freeCodeCamp?
<select id="Favourite Feature" name="Favourite Feature">
<option value="">Select an option</option>
<option value="1">Challenges</option>
<option value="2">Projects</option>
<option value="3">Community</option>
<option value="4">Open Source</option>
<label for="improvement">What would you like to see improved? (Check all that apply)
<select id="improvement" name="improvement">
<option value="">Select an option</option>