html form upload make button only code example
Example 1: html submit button
<input type="submit" value="Submit">
Example 2: upload button in html
<form action="/action_page.php">
<input type="file" id="myFile"
name="filename">
<input type="submit">
</form>