HTML JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
Publisher: John Wiley & Sons CopyRight 2001
ISBN: 0764533428
*/


FONT Object Properties

// document.all normalization trick for NN6
if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 5) { 
   document.all = document.getElementsByTagName("*") 
}
// one function does all!
function setFontAttr(select) {
    if (document.all && document.all.myFONT) {
        var choice = select.options[select.selectedIndex].value
        if (choice) {
            document.all.myFONT.setAttribute(select.name, choice)
        }
    }
}



Font Object Properties




This may look like a simple sentence, but 
THESE THREE WORDS 
are contained by a FONT element.



Select a text color: 

    
    Red
    Green
    Blue
    Some Hex Triplet Value



Select a font face: 

    
    Helvetica
    Times
    Comic Sans MS, sans-serif
    Courier, monospace
    Zapf Dingbats, serif



Select a font size: 

    
    3 (Default)
    Increase Default by 1
    Decrease Default by 1
    Smallest
    Biggest