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

Can anyone help me I am stuck here?

Level 8 - Lesson12
The Submit Form
I can't be acle to submit this lesson in the submit exercise.
<form>
<input type="text" />
<input type="submit" value="Save" />
</form>

The code run fine but when I submit it tells Please add another input field with type Submit*.
*Please anyone help me.
by

1 Answer

kshitijrana14
Try this one :

<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<select>
<option>Apple</option>
<option>Mango</option>
<option>Banana</option>
<option>Guava</option>
</select>
<button type="button">Click Here</button>
<input type="file" name="resume"/>
<input type="text"/>
<input type="submit" value="save"/>
<input type="submit"/>
</form>
</body>
</html>

Login / Signup to Answer the Question.