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

Level 8 , lesson 12 of html

I tried the solution as below :
Please help


<input type="text"/>
<input type="submit" value= "Save"/>
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.