First, your font tag is not formatted correctly. If you are declaring a font tag directly in HTML, it would be in this format:
<font face="Colaborate,Arial,Helvetica,sans-serif" size="12px" style="font-style: italic">Some Text</font>
But, declaring a font tag directly in HTML should only be done if you are not using HTML5. Most browsers today use HTML5. When using HTML5, you should define your fonts with CSS.
When defining your fonts with CSS, a space is a delimiter for different parameters that a css attribute can accept. For example, if you are defining a border there are different parameters that must be defined: the size, the style, the color. This is when you can use a space as a delimiter, because they define different parameters of the css attribute. For example, to put a black border that is one pixel in width with a solid line around your text, you would do this:
#yourItem {
border: 1px solid #000000;
}
But, there are a few CSS attributes that can accept and evaluate a hierarchy of values. An example of this is the font-family attribute. You can define multiple values for your font-family. They will be processed in the order they are listed. For example, if I list the font-family for your item like this:
#yourItem {
font-family: Colaborate, Arial, Helvetica, sans-serif;
border: 1px solid #000000;
}
The first thing the browser is going to do is look to see if the Colaborate font is installed on the machine/device. If the Colaborate font does not exist, it will next look for Arial (which is a pre-installed font on most machines/devices). It will then render the text as Arial, since Colaborate was not available. If it did not find Arial, it would look for Helvetica. If it did not find Helvetica, it would default to the first font on the machine/device that does not have serif treatment. This is why a comma is used in this instance instead of a space. A space defines actual different parameters. The comma is used to define a hierarchy of choices for one css attribute parameter. The comma does not work with all css attributes. It will only work with some.
Hope this helps!