spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / html / tutorials / 22 / 2

index12345678

Tutorial 22: The Font of Foulness, Part I: Size Matters

Developer News
Sir Tim Talks Up Linked Open Data Movement
From L.A. to Vegas With 100GbE
Salesforce Rolls Out Big Summer '08 Update

Font sizes using FONT

The first and most widely used use of the FONT element is to control font size. Take the following example, for instance:

<P>Check out our price list for a look at some 
<FONT SIZE="+4">big savings</FONT>!</P>

Check out our price list for a look at some big savings!

Subtle, no? The SIZE attribute works in the following way: There are seven font sizes, unimaginatively named "1" through "7". The default is 3. You can either explicitly set a font size by setting the SIZE attribute to one of the numbers between 1 and 7, or you can specify a relative font size by using a signed number like +4, as I've done above. This number will be added or substracted to the base font size (which is 3, but can be changed, as we'll see later). Here's a meaningless example that illustrates the seven font sizes:

<P>
<FONT SIZE="1">One</FONT>
<FONT SIZE="2">Two</FONT>
<FONT SIZE="3">Three</FONT>
<FONT SIZE="4">Four</FONT>
<FONT SIZE="5">Five</FONT>
<FONT SIZE="6">Six</FONT>
<FONT SIZE="7">Seven</FONT>
</P>

<P>
<FONT SIZE="-2">One</FONT>
<FONT SIZE="-1">Two</FONT>
<FONT SIZE="3">Three</FONT>
<FONT SIZE="+1">Four</FONT>
<FONT SIZE="+2">Five</FONT>
<FONT SIZE="+3">Six</FONT>
<FONT SIZE="+4">Seven</FONT>
</P>

One Two Three Four Five Six Seven

One Two Three Four Five Six Seven

FONT is bad because it is an text-level inline element that has to be used every time you change your font size (or other characteristics such as font face and color, as we'll see in the next tutorial). If you go the way of the Dark Side and start using it, you'll soon find hundreds of FONT elements all over your documents, increasing their size and making the source unreadable. The CSS way of using selectors to change the font sizes of various elements is much more elegant, useful and decreases download time immensely. The problem with CSS font sizing is that it's hideously broken, and replacing FONT elements with CSS isn't as straightforward as you might think; but before we go into that, let's look at some of FONT's Evil relatives. In the mean time, remember this about FONT: In general, avoid it like the plague.

index12345678

http://www.internet.com/



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
IBM eBook: Planning a Service Oriented Architecture
IBM eBook: Choosing the Right Architecture--What It Means for You and Your Business
Microsoft Article: Will Hyper-V Make VMware This Decade's Netscape?
Avaya Article: Using Intelligent Presence to Create Smarter Business Applications
Intel Go Parallel Article: Getting Started with TBB on Windows
Microsoft Article: 7.0, Microsoft's Lucky Version?
Avaya Article: How to Feed Data into the Avaya Event Processor
IBM Article: Developing a Software Policy for Your Organization
Microsoft Article: Managing Virtual Machines with Microsoft System Center
Intel Go Parallel Article: Intel Threading Tools and OpenMP
HP eBook: Storage Networking , Part 1
Microsoft Article: Solving Data Center Complexity with Microsoft System Center Configuration Manager 2007
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
HP Video: StorageWorks EVA4400 and Oracle
HP Webcast: Storage Is Changing Fast - Be Ready or Be Left Behind
Microsoft Silverlight Video: Creating Fading Controls with Expression Design and Expression Blend 2
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Red Gate Download: SQL Toolbelt and free High-Performance SQL Code eBook
Iron Speed Designer Application Generator
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
Silverlight 2 App and Walkthrough: Leverage Silverlight 2 with SQL Server and XML
IBM Article: Enterprise Search--Do You Know What's Out There?
HP Demo: StorageWorks EVA4400
Microsoft Article: The Progress and Promise of Deep Zoom
Microsoft How-to Article: Get Going with Silverlight and Windows Live
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES
webref The latest from WebReference.com Browse >
Book Review: Head First JavaScript · Web Hosting Control Panels · Use Your Blog for Fast Search Engine Rankings
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
NetApp's Virtual Storage Strategy Crystallizes · F/MC Watch: A Cisco-Centric Approach · Olympic Time Trials Use Wi-Fi Mesh

Legal Notices.

URL: http://www.webreference.com/html/tutorial22/2.html

Produced by Stephanos Piperoglou
Created: June 14, 2000
Revised: June 15, 2000