Tel 678.697.4783
Fax 678.840.7870
Po Box 4432
Marietta, Ga 30061
info@jamboconsulting.com

 Subscribe in a reader



Lunarpages.com Web Hosting
Web hosting by ICDSoft

Archives

Previous Posts

Powered by Blogger

Thursday, October 18, 2007

HTML code for Service Mark symbol

The other day I was looking for the HTML code for service mark (SM). I knew "™" is for ™, "©" is for ©, and "®" is for ®. So I thought there must be one for service mark. I googled for a while, but it appeared to be that there is no special HTML code for SM.

As a workaround, I used the subscript tag (<sup>) to raise "SM" next to the service name (i.e. ServiceNameSM). However, the font size for "SM" was a little too big, so I used a style to fix it:

ServiceNameSM

HTML for the style:

<style type="text/css">
.sm {
vertical-align: text-top;
font-size: 60%;
}
</style>
ServiceName<span class="sm">SM</span>

posted by Hank at 12:08 PM

0 Comments:

Post a Comment

<< Home