Grinch Regular Member Joined Jan 26, 2012 Messages 423 Reaction score 277 Feb 20, 2012 #1 Say I bought a domain and a host, how do I add content to the site. All I want to do is add 1 Picture in the center with some text. Any help is appreciated.
Say I bought a domain and a host, how do I add content to the site. All I want to do is add 1 Picture in the center with some text. Any help is appreciated.
chad362wiley Supreme Member Joined Dec 8, 2011 Messages 1,341 Reaction score 848 Feb 20, 2012 #2 You need to know HTML/CSS if you want to do it from scratch. If you just need a pic in the center and some text do this Code: <html> <head> <style type="text/css"> #image {text-align:center;} #para {text-align:center;} </style> </head> <body> <div id="image"><img src="XXXXXXINSERTIMAGESOURCE" /></div> <div id="para"><p>Insert text here</p></div> </body> </html> should work...pm me with your questions
You need to know HTML/CSS if you want to do it from scratch. If you just need a pic in the center and some text do this Code: <html> <head> <style type="text/css"> #image {text-align:center;} #para {text-align:center;} </style> </head> <body> <div id="image"><img src="XXXXXXINSERTIMAGESOURCE" /></div> <div id="para"><p>Insert text here</p></div> </body> </html> should work...pm me with your questions
chad362wiley Supreme Member Joined Dec 8, 2011 Messages 1,341 Reaction score 848 Feb 20, 2012 #3 double post sorry
jharr53301 Compromised Account Joined Apr 10, 2011 Messages 551 Reaction score 57 Feb 20, 2012 #4 Do you have Frontpage on your computer? It came free with some versions. It's the easiest to use without learning all the coding.
Do you have Frontpage on your computer? It came free with some versions. It's the easiest to use without learning all the coding.
P p1mp_ju1ce Registered Member Joined Mar 13, 2009 Messages 92 Reaction score 7 Feb 21, 2012 #5 send me a PM.. if you just need an image centered in a page.. i will help you with that.
bwman Power Member Joined Sep 4, 2011 Messages 789 Reaction score 421 Feb 21, 2012 #6 I'll help you for free.. pm me
M markden Regular Member Joined Feb 11, 2012 Messages 223 Reaction score 3 Feb 21, 2012 #7 <html> <head> </head> <body> <table><tr><td align="center"><img src="xyz.png" border="0" width="50px" height="50px"/></td></tr> <tr><td align="center"><p>Enter Text</p></td></tr> </table> </body> </html>
<html> <head> </head> <body> <table><tr><td align="center"><img src="xyz.png" border="0" width="50px" height="50px"/></td></tr> <tr><td align="center"><p>Enter Text</p></td></tr> </table> </body> </html>
B BlackOrCrippled Newbie Joined Oct 11, 2011 Messages 13 Reaction score 1 Feb 29, 2012 #8 Don't use a table ^. Just go for the HTML/CSS code posted by Chad. V. easy