Page 1 of 1

Unable to effect a file transfer please help

Posted: 2022-01-25 00:45
by Zach
I have code for a temporary webpage written in html, and an imgage to be displayed in the weppage. I am able to connect to the server for ftp, but where do I sent de code for the webpage and the image, which the webpage needs? Please help.

Re: Unable to effect a file transfer please help

Posted: 2022-01-25 16:15
by boco
Usually, for the simplest HTML webpage, you just place the code into a file named index.html and put the file into the web root on the server. For an additional image to be displayed, you need to put the image besides the index.html, and point to it from within the HTML body code.

Example:

Code: Select all

<img style="float:left;" alt="alternating text" src="image.png">