Tell us what’s happening:
hey im done coding .how do i send my survey form inorder to get a certificate
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<title id="SurveyFormApp">SurveyFormApp</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="SurveyFormApp">SurveyFormApp</h1>
<p id="Data Analysis">Data Analysis</p>
<form id="survey-form">survey-form<br>
<input id="name" type="text" placeholder="name" ><br>
<input id="email" type="email" placeholder="email" ><br>
<input id="number" type="number" placeholder="number" max="10" min="10" >
<label id="name-label" ></label><br><label id="email-label"></label><br><label id="number-label"></label>
<select id="dropdown">
<option value="google">google</option>
<option value="facebook">facebook</option> </select><br>
<input type="radio" name="details" value="Male">Male
<input type="radio" name="details" value="Female">Female<br>
<input type="checkbox" value="Single">Single
<input type="checkbox" value="Married">Married <br>
<!-- Describe yourself -->
<textarea name="Comments" placeholder="Additional Comments"></textarea><br>
<button id="submit" type="submit">submit</button>
</form>
</body>
</html>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36
Challenge Information:
Survey Form - Build a Survey Form