Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 8 lesson 4

help me level 8 lesson 4
by

2 Answers

kshitijrana14
Try this one:

<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<label for="age"></label>
<input id="age" type="number"/>

</form>
</body>
</html>
PRUDHVIRAJbg7qk
<!DOCTYPE html>
<html>
<head>
<title>
forms
</title>
</head>
<body>
<form>
<label for="age">age
</label>
<input type="number" id="age"/>
</form>
</body>
</html>

Login / Signup to Answer the Question.