Answers for "html upload image"

3

how to upload image in html

<form action="/action_page.php">
  <label for="img">Select image:</label>
  <input type="file" id="img" name="img" accept="image/*">
  <input type="submit">
</form>
Posted by: Guest on March-25-2020
1

html upload image

<input type="file" accept="image/*" />
Posted by: Guest on December-03-2020

Browse Popular Code Answers by Language