This will come in handy for everyone. You can save this on your computer or even print it out to have handy notes to help you remember.
When I was first learning, I taught myself from websites and lots of practice lol. I kept a small notebook I wrote down notes in to help me remember.
If you save this online you can make it really simple by just copying the code and pasting it in your page where you want it then adding the value you want (your choice of color, font, etc...)
Basic start of a page: I actually keep a page saved on my computer called blank and it only has this in it so I do not have to type
it every time lol. I just open up blank and then go to save as (name I want to use). Its lazy lol but is nice so you don't have to type it out always lol.
For text-decoration you have several choices of what to put:
none means it looks like normal text (no line udner it like a normal link). underline means it looks like a normal link, it has a line under it. overline means there is a line above the link underline overline means there is a line above and under the link line-through means there is a slash through the link
Backgrounds
body { background: #000000 }
body { background-image:url(july4.jpg); background-repeat:no-repeat; background-position:top left; background-attachment:fixed }
I believe it is worth noting here that while font tags do still work, current trends suggest that designers are moving away from them and going to CSS. I use Macromedia Dreamweaver MX 2004, and it literally marks font tags as INVALID to try to break the trend of using font tags.
The post above has CSS elements, but doesn't seem to show a completed stylesheet. Here is an example of a simple stylesheet with a few font styles:
To use style sheet elements, add class="style_name" to any of your main page element tags.
Example for a paragraph of style formatted text:
<p class="style_name"> Text text text text. </p>
When viewed on a page, the example would look something like this:
Text text text text.
If you want to use another style within that paragraph, you have to add a span tag around the text you want to be displayed in another style.
Span Example:
<p class="style_name"> Text <span class="style_name2">text text</span> text. </p>
The result would look something like this:
Text text text text.
Of course, "style_name(2)" would be replaced by an actual style name listed in your style sheet.
I will say that CSS confused me at first, but it is very useful and simple to use once you've become acquainted with it. I would reccommend new designers get acquainted with it from the start, because at the rate of use, font tags are likely to disappear IMHO.
[send green star]
[
accepted]
Yeah I never use the font tags anymore, even though I actually have seen alot of people still using them.
I stuck with the font tags though as css can be complicated for those just beginning
I have a CSS thread you may want to add too. I was just adding some simple stuff here to help people remember some tags.
Feel free to add anything and create new threads too! I am by far not an expert I just try to help with what I do know So would love others to also add in with what they know on any of the threads! And that goes for everyone