I need to add html website

Hello i have added html website

using command

ee site create example.com --html

and uploaded site in folder but everytime i get 403 error

check the file permissions. If you uploaded them as root, the web service likely doesn’t have permission to the file.

It should be owned by www-data, with 644 permissions on the files.

this will fix the file owner:
chown -R www-data:www-data *

Important to note you need to be inside the htdocs directory (or whatever the base directory is called where index.html is located) before you run the above command