Tell us what’s happening:
Hi
I just completed this survey form and cannot seem to find the certificate. Where do I get the certificate. I can just download my own code
Thanks
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.
css" />
</head>
<body>
<h1 id="title">Movie Survey </h1>
<p id="description">A movie survey collects feedback from consumers on their media viewing habits and favorite films and TV shows genres</p>
<form id="survey-form"> <input id="name" type="text" placeholder="Please enter your name" required/><input id="email" type="email" placeholder="Please enter your email"
type="radio" required/><input id="number" type="number" min="0" max="9" placeholder="Please
enter your number"/>
<label id="name-label">Enter your
name? </label>
<label id="email-label">Enter your
email?</label>
<label id="number-label">Enter your
number?</label>
<select id="dropdown">
<option>option1</option>
<option>option2</option>
</select>
<legend>What is your gender</legend>
<label for="gender"><input id="gender" type="radio" name="gender" class="inline" value="1" checked />Male</label>
<label for="gender"><input id="gender" type="radio" name="gender" class="inline" value="2"/>Female
<p>How often do you watch movies?</p>
<label for="regularity">
<input class="inline" id="regularity" type="checkbox" value="1" required name="regularity" />Extremely often
</label>
<input class="inline" id="regularity" type="checkbox" value="2" required name="regularity" />
Very often
</label>
<input class="inline" id="regularity" type="checkbox" value="3" required name="regularity" />
Moderately often
</label>
<input class="inline" id="regularity" type="checkbox" value="4" required name="regularity" />
Slightly often
</label>
<input class="inline" id="regularity" type="checkbox" value="5" required name="regularity" />
Not at all
<textarea></textarea>
<input id="submit" type="submit" value="Submit" />
</label>
</body>
</html>
/* file: styles.css */
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15
Challenge Information:
Survey Form - Build a Survey Form