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

Level 8 /Lesson 12

Full code
by

1 Answer

sam5epi0l
Try this code:

<!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.