hi can someone help me to figure out why my legend element wont appear thank you
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<title>freeCodeCamp Survey Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div> <h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
</div>
<div>
<form id="survey-form">
<label> Name <input id="name" type="text" required/ placeholder="name"> </label>
</div>
<div>
<label> Email <input id="email" type="email" required placeholder="email"/></label>
</div>
<div>
<label> age <input id="number"type="number"optional placeholder="age" min="10" max="100"/> </label>
</div>
<div>
<label> Which option describe your current role</label> <select id="dropdown" name="role">
<option value="">(select current role)</option>
<option value="">Student</option>
<option value="">Full Time Job</option>
<option value="">Full Time Learner</option>
<option value="">Prefer Not to Say</option>
<option value="">Other</option>
</div>
<div>
<br>
<legend>Would you recommend freeCodeCamp to a friend</legend>
<label><input id="definitely" type="radio"/>Definitely</label>
/* file: styles.css */
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36
Challenge: Build a Survey Form
Link to the challenge: