**i cant find how to submit my survey form project on the new responsive web design curriculum
Describe your issue in detail here.
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Survey Form</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0"
</head>
<body>
<h1 id="title">Political Apathy</h1>
<p id="description">Help us to determine the extent of apathy</p>
<form id="survey-form">
<fieldset>
<label id="name-label">Name <input placeholder="mark" id="name" type="text" required/></label>
<label id="email-label">Email <input placeholder="@gmail" id="email" type ="email" required/></label>
<label id="number-label">Number <input placeholder="digits" min="11" max="15" id="number" type="number"/></label>
<label> Are you politically apathetic?</label>
<select id="dropdown">
<option value="yes">yes</option>
<option value="no">no</option>
</select>
<label>Are you going to vote in the next general elections?</label>
<label>Yes <input type="radio" name="Yes-No" value="Yes"></label>
<label>No <input type="radio" name="Yes-No" value="No"></label>
<label>What would make you vote?</label>
<input type="checkbox" value="money"><label>money</label>
<input type="checkbox" value="asuu"><label>asuu</label>
<label>Any reason to vote please state below</label><textarea></textarea>
</fieldset>
<button type="submit" id="submit">Submit</button>
</form>
</body>
</html>
/* file: styles.css */
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36 OPR/86.0.4363.59 (Edition Campaign 34)
Challenge: Build a Survey Form
Link to the challenge: