From one of the other forums I did found this below code and it works from me. Apparently, you need to mention the value attribute before the type attribute to get past through this lesson. @Studytonight something for you to fix please!
<!DOCTYPE html>
<html>
<head>
<title>
My Webpage Title
</title>
</head>
<body>
<form>
<input type="text" />
<input value="submit" type="submit" />
</form>
</body>
</html>