<!DOCTYPE html>
<html lang="en">
<head>
<title>Survey</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href ="styles.css" rel = "stylesheet"/>
<head>
<body>
<main>
<h1 id="title">Survey form</h1>
<p id="description">fill this form to continue</p>
<form id="survey-form">
<input id="name" type="text" placeholder="name"/>
<input id="email" type="email"placeholder="email"/>
<input id="number" type="number" max="99999999" min="-9999999999"placeholder="number" />
<label id="name-label"></label>
<label id="email-label"></label>
<label id="number-label"></label>
<select id="dropdown" placeholder="select">
<option value="">no</option>
<option value="1">yes</option>
<option value="2">maybe</option>
<option value="3">how</option>
<option value="4">when</option>
</select>
</form>
</main>
</body>
Please Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!