Need Help making a website.

Grinch

Regular Member
Joined
Jan 26, 2012
Messages
423
Reaction score
277
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.
 
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
 
Do you have Frontpage on your computer? It came free with some versions. It's the easiest to use without learning all the coding.
 
send me a PM.. if you just need an image centered in a page.. i will help you with that.
 
<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>
 
Back
Top