Page 1 of 1

a few questions from a ammuture

Posted: Sun Oct 16, 2005 8:17 pm
by vonboy
a few questions from a noobie :oops:

1.how do you set an image as a background?
2.how do you change the color of the text?
3.how do you make a picture you **** on to link to another page.

thanks

Posted: Sun Oct 16, 2005 8:53 pm
by Lixas
Welcome joined to web developers team, everyone of us have begun with such simple examples
1) In the body tag

Code: Select all

<body background="www.example.com/directory/image.gif">
or

Code: Select all

<body background="./directory/image.gif">
if the image is in the same dir as your html file

2) very good tutorial about fonts is here: http://www.htmlcodetutorial.com/_FONT.html

3)

Code: Select all

[url=destination.html][img]./path_to_your/image.gif[/img][/url]
and my last word: use google or other serching engine to find tutorials for html or for smth else :)
here is a link for various html tutorials: http://www.google.com/search?q=html+tutorial

Posted: Tue Oct 18, 2005 1:06 am
by vonboy
thanks. i'll look for tutorials nexttime.