Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to upload a file to a website, only by modifying the HTML and CSS code?

Tags:

html

css

I'm trying to upload a file to a website, so I can download it later from another location. Is there a way to do this solely by modifying the HTML/CSS code of the website?

like image 834
loic17 Avatar asked Dec 15 '22 18:12

loic17


2 Answers

No. Neither HTML nor CSS are programming languages (meaning they allow you to interact with the server and its files) and, if it were allowed, anyone could upload files to a site's server.

like image 119
Rob Avatar answered May 20 '23 14:05

Rob


Yes. You just need to modify the HTML/CSS code of the website.

like image 41
ItsGeorge Avatar answered May 20 '23 15:05

ItsGeorge