Today we’re going to be covering typography as it relates to CSS. For those of you who aren’t web geeks, CSS stands for Cascading Style Sheet, and it’s a language responsible for how web pages are displayed. When you load a page, an external CSS file is pulled, and that file tells the site which background color to use, where columns should go, the border width on images, whether links are underlined, everything. A long time ago– not that long, I guess, but around the time I was still packing school lunches and riding a bus– all that information was included right IN the code of the page. For instance:
<font color=”red”>I want this text to be colored red.</font>
I want this text to be colored red.
<font size=”+3″>This needs to be big!</font>
This needs to be big!
<font color=”red” size=”+3″>This needs to be big and red!</font>This needs to be big and red!
<div class=”top-paragraph”>I don’t know what size or color I might eventually want here.</div>
.top-paragraph {font-size: 18px;}
.top-paragraph {font-size:36px;color: blue;}
.top-paragraph {font-family: PiratesAhoy;}
Palatino Linotype
I’m a lighter serif than the
well-loved Georgia;
but I maintain that same
clean sophistication.
Gill Sans
In the same vein,
people often use Century Gothic
when I’m so much more
weighted and curvy.
Katie says
YAY! I will be sending you an email later tonight about everything!
Becca says
Absolutely, Katie! It depends what you need done– if it’s just a few questions you need answered, or troubleshooting a particular problem, I’ll usually do that for free. If you want an actual new theme designed or something more elaborate, go ahead and email me: db@dasbecca.com. We can work something out, either way!
Becca says
Emmy, you are SUCH a sweetheart. Every comment, email, Twitter– everything from you is so positive and wonderful. I just had to say I love hearing from you; it always makes my day brighter! 🙂
Katie says
I know you probably receive a TON of these comments/questions/requests, but do you by chance do any freelance work for poor souls who need a little help with their blog layout?
emmysuh says
I don’t have ambitions to be a webdesigner but it’s cool to learn how my sites and the sites I view come together! I only know how to do the first, simple examples of fonts you listed, this is pretty cool stuff. Great explanation, also, I understood the CSS explanation really well!