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

HTML LEVEL 8 LESSON12

<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="text" />
<input type="submit" value="Save"/>
</form>
</body>
</html>
Why is my code error? it's said Please add another input tag with type attribute as submit.
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>
thịnh
ohhhh thank you very much

Login / Signup to Answer the Question.