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

There is a problem in level 8 lesson 12

<input type="text"/>
<input type="submit" value="Save"/>


What's wrong with this code .......??
on submittnig this task compiler giving error.

This code is totally according to the given instructions
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.