a few questions from a ammuture

Any problem with HTML can be discussed here.
Locked
vonboy
Posts: 64
Joined: Sun Oct 16, 2005 1:38 am

a few questions from a ammuture

Post 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


Lixas
Posts: 750
Joined: Wed Feb 16, 2005 4:21 pm

Post 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
Image
vonboy
Posts: 64
Joined: Sun Oct 16, 2005 1:38 am

Post by vonboy »

thanks. i'll look for tutorials nexttime.
Locked