May 10, 200917 yr Hi Everyone I'm trying to do my assignment for my web design course and it's saying that we have to use the font "serif" for everything. I don't have serif on my computer and I have tried to look for it online, but there doesn't seem to be any 1 serif, just lots of fonts that have serif in the title. Is there a font just called serif or is it a type of font, rather than a font itself? Sorry, I'm a little confused! Thanks Kerstey
May 10, 200917 yr There is no font "serif" there are many serif fonts. A serif font is a font like "times new roman", a sans serif font is "arial". Follow the links to the Wikipedia pages to see what it means exactly.
May 10, 200917 yr Serifs are the small strokes at the end of the main strokes of letterforms. Typefaces with serifs are called serif typefaces and those without, sans serif typefaces (sans is the French for without). In terms of your assignment, in your CSS specify that you wish to use serif typefaces: #somediv {font-family: Georgia, "Times New Roman", serif;} This means that your browser will first look for 'Georgia' and if found will use it. If not, the browser will look for 'Times New Roman' and use that instead. If that's not found it will default to whichever serif system font is installed. (This is indicated by 'serif' in the CSS above). Change the order to your liking. Below is an image of some of the letterforms from Trajan's Column in Rome showing some of the serifs. All Western letterforms are derived from this 'serif' typeface:
Create an account or sign in to comment