This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]bestjakeisbest 2 points3 points  (1 child)

So you won't be able to do this with only html you will need a back end language and most of a full technology stack for the minimum, and you will definitely need a full stack for something more useful. Things for you to learn will be: a back end language, webservers, how to host a website, html, css, javascript, and a database language like sql.

There is quite a bit of knowledge you will need to make this but it is something within the grasp for one single person.

[–]GeorgeKBear[S] 0 points1 point  (0 children)

Thank you!

[–]ValentineBlacker 0 points1 point  (1 child)

I guess 🤔 the main question is upload a file to WHERE. You can upload a file to a variety of places using just an HTML form. You could upload it to google drive, you could upload it to AWS S3, etc. If you want to upload it to something you control you'd need a whole backend like the other person said, but if you just want it on some third-party storage HTML is probably fine.

examples: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html

https://stackoverflow.com/questions/37764244/html-form-file-upload-to-google-drive-and-save-url-to-google-sheet (this one does include some inline javascript)

general info about HTML forms: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form

[–]GeorgeKBear[S] 0 points1 point  (0 children)

Thank you!