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

Anyone tell me what is the error in these html tag (interactive html)

LEVEL-8 (LESSON-12)


<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="text" />
<input type="submit" value="Go!" />

</form>
</body>
</html>
by

1 Answer

kshitijrana14
Try this one
<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="text"/>
<input type="submit" value="save"/>
</form>
</body>
</html>

Login / Signup to Answer the Question.