Tuesday, October 25, 2011

Can you give me some html tips for my webpage?

I'm building my webpage, but I want to know some html tips like



how i can change the background image using html



how i can insert a transparent table using html



how I can put the size of the page using html



how I can change the link color



Finally is there a some kind of html code that you can post and this will content the style of the page



Thanks and I'm new on thisCan you give me some html tips for my webpage?What you need is CSS. The code for each of your requests is as follows:

1. body {

background-image: url(image.png);

}

2. I'm not sure what you mean by 'transparent table' but this should work:

HTML: %26lt;table id=%26quot;table%26quot;%26gt;%26lt;tr%26gt;%26lt;td%26gt;Data%26lt;/td%26gt;%26lt;/tr%26gt;%26lt;/table?br>
CSS: #table {background-color: none;}

3. body {width: 100px; height: 100px;}

4. Normal Links: a {color: red;}

Visited Links: a:visited {color: red;}

Links when mouse hovers over them: a:hover {color:red;}



For more information visit:

http://www.w3schools.com



For information on CSS visit the above link or:

http://www.wikihow.com/Style-a-Page-Usin



I hope this helps.Can you give me some html tips for my webpage?http://www.w3schools.com/Can you give me some html tips for my webpage?the first person's link is good. you'll want to take a look at the HTML and CSS links on the left.Can you give me some html tips for my webpage?http://www.w3schools.com/