You are on page 1of 2

** start of undefined **

<!DOCTYPE html>
<html lan="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title for="title">https://survey-form.freecodecamp.rocks</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the
platform</p>

<form id="survey-form">

<label id="name-label"><input type="text" id="name" required id="survey-


form" placeholder="name-label">name</label>

<label id="email-label"><input type="email" required id="email"


placeholder="email-label">email</label>
<label id="number-label"><input type="number" id="number" min="13"
max="120" placeholder="number-label">age(optional)</label>

<label>Which option?
<select id="dropdown"><option type="">select one</option><option
type="1">one</option><option type="2">two</option></select>
</label>

<p>Would you recommend freeCodeCamp to a friend?</p>


<label>Definitely
<input type="radio" value="1" name="x"></label>
<label>Maybe<input type="radio" value="2" name="x"></label>
<label>Not Sure<input type="radio" value="3" name="x"></label>
<p>What would you like to see improved? (Check all that apply)</p>
<label>Front end<input type="checkbox" value="wick" name="y"></label>
<label>back end<input type="checkbox" value="jhon" name="y"></label>
<label>Any comments or suggestions?<textarea placeholder="type
here.."></textarea></label>

<button type="submit" id="submit">Submit</button>

</form>
</body>
</html>

** end of undefined **

** start of undefined **

body{

}
** end of undefined **

You might also like