Hello Greeting to whom it may concern
i kinda need help here
what does this mean
" You should have a label
element with an id
of name-label
."?
i already have a label element with the id of name and the text in the lable element
what am i missing ?
please i need a comprehensive hint or solution so soon
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<title>
SURVEY FORM
</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="title">
SURVEY FORM
</h1>
<P id="description">
Fill in Your Description
</P>
<form id="survey-form" action="/action_page.php">
<fieldset>
<label for="name"> First Name: <input name="fame" type="text" id="name" required/></label>
<label for="name">Email: <input type="email" id="email" required /></label>
<label for="number">Age: <input type="number" id="number" name="Age" min="18" max="28" required/></label>
<label>Name:<input id="name-label"></label>
<label>email:<input id="email-label"></label>
<label>number<input id="number-label"></label>
</fieldset>
</form>
</body>
</html>
/* file: styles.css */
label{ display:block;
}
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: Survey Form - Build a Survey Form
Link to the challenge: