Avoid Uppercase HTML

Upper case HTML doesn't work:

    JButton jb = new JButton("<HTML><B><I>Hello World!</I></B></HTML>");

On the other hand, Sun has no qualms with malformed HTML that omits the end tags like this:

 JButton jb = new JButton("<html><b><i>Hello World!");

Previous | Next | Top | Cafe au Lait

Copyright 2000 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified January 28, 2000