If you have followed the first page in the village webclub, the next step might be adding an image.
You could conect via ftp and upload images, but it might be simpler and more fun to use the terminal.
NB. I am very much working this out as I go along, there may be better ways.
In this secanario I imaging you have made an index.html page and want to add an image. There are to steps, uploading an image to your space and adding the html fragment to add thatto your webpage.
What suprised me about this was you do this without using ssh to log on to the server. You could log on in one terminal window to edit the webpage and have another window or tab open to upload files.
In my tilde space I've made a folder to keep my images in inside my public_html page. I did this by:
cd public_html
mkdir images
I have an image on my desktop called logo.gif:
scp /Users/john/Desktop/logo.gif
I finish the line with my logon details for the club and the path to where I want the file to go:
scp /Users/john/Desktop/logo.gif johnjohnston@ds106.club:/home/johnjohnston/public_html/images/
nano index.html
Remember to make sure your quotes balance and you close your angle brackets.
and note we need to tell the browser the gif is in the images folder.
Be seeing you