Is there a HTML tag for converting text to uppercase?
Thanks,
John
Is there a HTML tag for converting text to uppercase?
Thanks,
John

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
Hi, not html but you can do it with a css style rule, IE:- h1,h2, {text-transform:capitalize;}
John
there are in fact 2 methods either in < style> tags inside your head tags or the other in an external stylesheet
they are
p
{
text-transform: uppercase
}
Which defines only capital letters ie CAPITAL CITY
or
p
{
text-transform: capitalize
}
Which defines each word in a text starts with a capital letter ie Capital City
So for your question it will uppercase to make everything CAPITALS
Jerry
Thank you.
John