Page/Widget Header Text and Fonts
Using Jamroom
honnestly i learned by doing. well html is fairly simple or was when i 1st taught myself (its evolved a lil since then) css i'm not sure even existed when i learned html
css you can learn by using firebug selecting elements (divs images whatever) you can 'cycle through' options using just the up and down arrows and see the results.
theres a site i foirget what its called webmonkey/ codemonkey? havent looked at it in a decade or more that has basic tutorials. both are easy to learn, css slightly trickier to learn as you do simply because of the nested structure of html, finding the right element to change its attributes on might be tricky at 1st) example display:none or any other display option can be used on the containing div or the img tag within it
its very powerful yet pretty simple
above you were offered code that would change an elements state when used in a style, all you need to do to learn it is look at it and see why it does what it does
he gave you 3 ways to target the element 'title"
then you can have in the css goes here area font-color:red; font-size:bigger; or font-color:#fe1000; font-size:2em; for more exact control
its pretty simple to see these set the font color and sizes
only a handful are not that self explanitory