|
Writing HTML | About | FAQ | References | Tags | Lessons | previous | next |18. Spiffing Up TextNot only can you color the background but you can color, SIZE, and even change the font typeface for specific portions of text! How much would you pay? But WAIT! You can now write superscripts and subscripts for fun things like chemistry and math: CO2 + SO4-2 ObjectivesAfter this lesson you will be able to:
LessonNote: If you do not have the working documents from the previous lessons, download a copy now. With the HTML introduced by Netscape and HTML 3.2, you have some more options for formatting your text. Specifically, you can create different sized text as well as different colored text. When used judiciously, the text formatting can enhance the layout of a web page. When used with reckless abandon, it can produce web pages that look like noise. You can also now create superscript and subscripts used in mathematical expressions, chemical formulas, or as footnote markers. In this lesson we will introduce you to these text features with some examples that you will use to modify your Volcano Web pages. You may want to first refer to the font test page to determine if your web browser supports the tags used in this lesson. Font SizeThe <font>..</font> tag introduced by Netscape may be used to set the size of the font from 1 (smallest) to 7 (largest) with a size of 3 being the normal text size:
Remember that the actual size will depend on the computer font the user has selected for their web browser -- you are adjusting the size relative to the default font they have chosen. The format for the font size tag is: <font size=N>blah blah blah</font> where N=1 to 7. The font tag may be used in conjunction with other style tags (lesson 5) or inside header tags (lesson 3). The other method for using the font tag is to provide a relative size change: <font size=+1>blah blah blah</font> <font size=-2>blah blah blah</font> i.e. where the +N or -N value provides the offset from the current font size. This is used with another tag: <basefont size=5> which changes the base font size from its default value of 3 to some other value. You might do this in a web page that will mostly have text of a larger or smaller than standard font size. That way, if you need to adjust small portions of the page, you can use the relative font size tags shown above. The power of using relative font size tags (e.g. size=+2) over absolute size tags (e.g. size=5) is that we could easily shift the size of ALL text in that page by changing one instance of the <basefont> tag. Note: The <basefont> tag has no closing tag -- it continues to be the base font size until another <basefont> tag occurs. If a web browser does not support the <font> tags, you may want to try the HTML 3.0 tags: <BIG>...</BIG> <SMALL>...</SMALL> which gives you less font sizes to work with but can still be useful for those browsers.
We will first use the <font size=X> tag to modify the title in our opening page:
Change the line that reads: <h1>Volcano Web</h1>to: <p> <B><font size=+4>V</font><font size=+3>OLCANO WEB</font></B>Look carefully at what we have done -- the first V is now increased in size by 4 units above the base value, and the other letters (now capitalized) are increased 3 units above base value. This provides the layout style of SMALL CAPS. Also note that we have added a <b>...</b> tag to make the title stand out. And finally, because we are not using a header tag that carries a line break by default, we had to add a <p> tag above the title to force it to appear on a new line (we do not need one after because the next HTML is a <BLOCKQUOTE> that carries its own line break -- see lesson 13). Before going on, we will use the font size tags to modify two other web pages in our work area. the page for Volcanic Places in the USA (file usa.html) and Research Project (file proj.html) both use <h2>...</h2> tags for the main title and <h3>...</h3> tags for sub section headings. Go into your text editor and change every occurrent of tags: <h3>blah blah blah</h3> with: <p> <font size=+1><B>blah blah blah</B></font><br> Note that the <p> tag forces a one line break with preceding text above and the <br> tag forces a line break (no white space) to subsequent text. Can you see the difference between using the <font> tags and the <hN> tags for section titles? The formatting differences may be subtle, but it does offer you, the HTML author, alternatives for your web page design. Just remember that if a reader's browser does not support font size tags, they will see all the text as the standard size.
Font ColorIn lesson 16, we introduced the tags for coloring text of the entire web page as well as the proper format for representing color values in HTML. You can also add an attribute to the tag to color a selected portion of text using the hexideciaml codes or the 16 colors recognized by their names: <font color=#993459>...</font> <font color=lime>...</font> <font color=#002200>...</font> <font color=navy>...</font> <font color=#193467>...</font> We will not go crazy with the color tags, but as an example, we will change the color of the VOLCANO WEB text we worked on above for the cover page. If you recall, we set the text color for the text of this page to yellow and we will override that color just for the title text:
<B><font size=+4 color=#FF66FF>V</font> <font size=+3 color=#DD0055>OLCANO WEB</font></B> NOTE: The size and color attributes can reside together in a <font> tag. The effect here makes the "V" a brighter violet color and one size larger than the other letters. Superscripts and SubscriptsUntil HTML 3.0 you were out of luck if you needed to write mathematical expressions, chemical formulas, or other expressions with superscripts and/or subscripts. These new tags raise/lower the "scripted" text one half line and sizes it one size smaller. The HTML format for these tags is:
We will now use these tags for our Introduction page:
Font FaceThe HTML 3.2 standards included the <font> tag to specify a particular screen font for text display. This may not work in all web browsers, so you may first want to take a try the font test. The HTML for specifying a font face is: <font FACE="font1,font2">some text If a viewer's web browser supports the font FACE attribute and they have one of the listed fonts installed on their computer, then the text will be displayed with the specified font. Otherwise, it will use the same font as the rest of the web page. If you choose to use a font face, you should select a face that is standard or be sure that the intended computers have any "exotic" fonts installed. We will now modify the <font> tag for our title page so that the words "Volcano Web" appear in a different font:
NOTE: We've included specifiers for the browser to choose Arial for Windows Helvetica for Macintosh and/or computers that do not have the Arial font installed. Check Your WorkCompare your web pages with this sample of how it should appear. If your pages are different from the sample or the hypertext links do not work correctly, review the text you entered in the text editor. ReviewReview topics for this lesson:
More InformationHere are two more styles that are now available in HTML 3.2 that may work in your web browser.
And finally, here is a subtle point about text coloring that you may find useful someday. In lesson 16, we learned how to use the <body> tag to color the background, text, and link colors. If we were to color a block of text with the <font> tag, it would only affect the body text, and not the color of the hypertext links -- these keep the colors that are either the default blue or whatever is designated in the <body> tag.
Independent PracticeTry experimenting with the <font>...</font> tags in your own web pages. See how they can work inside of the <hN>...</hN> tags too. Experiment with using different fonts, even the wild ones!
Look for places where you think you might need superscripts or subscripts. One example might be for footnotes -- you could number or character code them, and then each footnote could act as a hypertext link to a footnote (or jump to a separate page for end notes):
Coming Next....Huge Rulers? Hefty Rulers? Handy Rulers? More options for <hr> ,GO TO.... | Lesson Index | previous: "Don't Blink, Don't Marquee" | next: "Easy Horizontal Rules" |
Writing HTML: Lesson 18: Spiffing Up Text |