could someone tell me how i put pictures on my site

Synkc

Active Member
Messages
1,765
Reaction score
0
Points
36
Use html "img" tags.

example: <img src='url_of_image' alt='alternative_text_here' />
 

lmc4you4me

New Member
Messages
18
Reaction score
0
Points
0
im really greatfull for your reply, i am new to this so its really quite confusing. where is the html of the pic, is it in the browser pannel
 

Synkc

Active Member
Messages
1,765
Reaction score
0
Points
36
I'm not sure of what your asking, but just paste that code I posted into a .html file, fill in the url of the image and alternative text, and upload the file.
 

lmc4you4me

New Member
Messages
18
Reaction score
0
Points
0
ok thank you. could you help me in understanding what td/tr means please
Edit:
can i just type it into my index editing page, im not sure what you mean by put it in a html file then upload. (where would i upload it from/where would i get a html file to copy it to) sorry for going on im just finding it hard to understand
 
Last edited:

Thewinator

New Member
Messages
256
Reaction score
0
Points
0
He means you should put it into any html file.
Like you did with the index.html file.
A tr is a table row and a td is a table cell.
They should be included inside a table tag like this
HTML:
<table>
  <tr>
    <td>
      My first table
    </td>
    <td>
      Nowai!
    </td>
  </tr>
</table>

As for uploading use the file manager in cPannel or an ftp client.
 

lmc4you4me

New Member
Messages
18
Reaction score
0
Points
0
ok thank you, still alittle confused but im sure al work it out. ps i didnt do anything with the index.html.
 
Top