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

Study_tonight - HTML Course Level 8 Lesson 12: Submit Form not proceeding further to next level

Hi,
I'm learning HTML course in study tonight. I'm currently at level 8, lesson 12. In the exercise, asked to add two input tags with some attributes and values. when given according to instructions, still the solution is not accepted and thus not proceeding to next level. Please help in solving the issue.

<form>
<input type="text" />
<input type="submit" value="save" />
</form>

Also, How can we skip levels if required?
by

2 Answers

kshitijrana14
Try this one
<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="text" />
<input value="save" type="submit"/>
</form>
</body>
</html>
kalepu
Thanks a lot for your reply and answer.!!

Login / Signup to Answer the Question.