On the font issue...
Are you both on Windows or is one on Mac?
When you choose fonts you can designate several options in your code. This should be designated with the CSS, not html because the <font> tag in html is deprecated (assigned to be dropped—no longer supported) in the future.
For example, if you right click and then view the source of this page you will find for this page an embedded font choice within the body tag with the following: font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;. The browser will start with verdana, then lucida, etc. until it finds one. The first one it finds on your computer will be used.
It is good, especially when you want something more unusual to choose one from each tradition (Windows & Mac) in addition to the generic alternative.
|