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