I like w3schools.com, I use it if there is anyhting I forget when I'm designing web sites.
You have 2 main options, html code which you type AROUND the text that you want to change
such as %26lt;font color=';red';%26gt;THIS TEXT WOULD BE RED%26lt;/font%26gt;
or instead of saying ';red';, you could say ';#ff0000';
http://www.w3schools.com/html/html_fonts
There is also the option to put code in your %26lt;style%26gt; tags. This is useful if you want to change either text that is already on the site that you can't change OR you have a bunch of text you want to look the same, such as
%26lt;style type=';text/css';%26gt;
span.red {color:red}
%26lt;/style%26gt;
%26lt;span class=';red';%26gt;this test will be red%26lt;/span%26gt;
This text will be the default color
%26lt;span class=';red';%26gt;this test will also be red%26lt;/span%26gt;
http://www.w3schools.com/css/css_text.as
If you need any help, I'll be more then happy to help you!
No comments:
Post a Comment