<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>BE7A LLC</title>
	
	<link>http://www.be7a.com</link>
	<description>Be Unique</description>
	<lastBuildDate>Tue, 09 Mar 2010 13:13:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Be7a" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="be7a" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Follow BE7A</title>
		<link>http://www.be7a.com/latest-news/follow-be7/</link>
		<comments>http://www.be7a.com/latest-news/follow-be7/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 21:55:53 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Latest news]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[social network]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=565</guid>
		<description><![CDATA[We have taken the steps to add social features on our website.  As communication evolves online... ]]></description>
			<content:encoded><![CDATA[<p>We have taken the steps to add social features on our website.  As communication evolves online, the social web has become the primary way to share information, stay connected and express in real time. </p>
<p>In today&#8217;s world of status messages, tweets and update streams, it&#8217;s not enough to provide you news, information or keep you up to date with anything just through our website.  We now offer 4 different tools for you to use as a way to keep you informed.   <span id="more-565"></span></p>
<p>You can follow us through one of the following social tools below:<br />
<a href="http://www.twitter.com/ebe7a" rel="external">Twitter</a> &#8211; Share and discover what’s happening right now, anywhere in the world.<br />
<a href="http://www.facebook.com/pages/BE7A/356197354904" rel="external">Facebook</a> &#8211; Helps you connect and share with the people in your life.<br />
<a href="http://www.linkedin.com/companies/be7a-llc" rel="external">Linkedin</a> &#8211; Another professional network to keep in touch through business world.<br />
<a href="http://www.be7a.com/rss/" rel="external">RSS Feed</a> &#8211; Another format for delivering information at your choice of web feed.</p>
<p>We hope you enjoy the experiences of keeping you informed.  We look forward to continuing to evolve, educate and build relationship with readers like yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/latest-news/follow-be7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Footer Position</title>
		<link>http://www.be7a.com/collective-thoughts/footer-position/</link>
		<comments>http://www.be7a.com/collective-thoughts/footer-position/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 03:00:20 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Collective thoughts]]></category>
		<category><![CDATA[laboratory]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=486</guid>
		<description><![CDATA[One of the issues I had to deal with was the screen constraint. On a web application, I was told to fit... ]]></description>
			<content:encoded><![CDATA[<p>One of the issues I had to deal with was the screen constraint.  On a web application, I was told to fit all the information within 1024&#215;768 simply to follow the same paradigm as windows application.  I never understood why they want to keep it that way.  When designing for the web, there are ways around it.  For this project, I think it&#8217;s important for users to have the flexibility to maximize their real estate only in height and not by width.  <span id="more-486"></span></p>
<p>I found this footer position that would adjust to your browser size and yet maintain footer at the bottom.  The snippet below is an example how it&#8217;s done.</p>
<p>HTML Format<br />
<code><br />
&lt;div id=&quot;top&quot;&gt;&lt;/div&gt;<br />
&lt;div id=&quot;container&quot;&gt;<br />
    &lt;p&gt;Lorem ipsum contents placement&lt;/p&gt;<br />
    &lt;div id=&quot;footer-spacer&quot;&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&quot;footer&quot;&gt;<br />
    Footer Position Here<br />
&lt;/div&gt;<br />
</code><br/></p>
<p>CSS Format:<br />
<code><br />
html, body {<br />
    height: 100%;<br />
}<br />
body {<br />
    margin: 0;<br />
    padding: 0;<br />
    background-color: #fff;<br />
}<br />
#top {<br />
    position: absolute;<br />
}<br />
h1, p {<br />
    margin: 0;<br />
    padding: 0.3em 0;<br />
}<br />
#container {<br />
    min-height: 100%;<br />
    margin-bottom: -36px;<br />
}<br />
* html #container {<br />
    height: 100%;<br />
}<br />
#footer-spacer {<br />
    height: 36px;<br />
}<br />
#footer {<br />
    border-top: 1px solid #000;<br />
    height: 35px;<br />
}<br />
</code><br/></p>
<ul>
<li style="background: none; padding: 0;">Pretty simple stuff.  The method above is compatible with the following browser:</li>
<li>Firefox 1.0</li>
<li>Firefox 2.0</li>
<li>Firefox 3.0</li>
<li>Chrome 1.0</li>
<li>Safari 3.1.2</li>
<li>IE 6</li>
<li>IE 7</li>
<li>IE 8 beta</li>
</ul>
<p><br/></p>
<ul>
<li style="background: none; padding: 0;">Works but buggy:</li>
<li>Opera 8.54</li>
<li>Opera 9.50</li>
</ul>
<p>Here&#8217;s my own <a href="http://www.be7a.com/labs/footer position/X-footer.htm" target="_blank">footer</a> that I was playing with.  The credit goes to  <a href="http://www.electrictoolbox.com/html-css-footer/" target="_blank">electrictoolbox</a>.  Thanks to them, I was able to solve this issue at work.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/collective-thoughts/footer-position/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Networking</title>
		<link>http://www.be7a.com/services/social-networking/</link>
		<comments>http://www.be7a.com/services/social-networking/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 18:54:25 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=342</guid>
		<description><![CDATA[With Internet now integrated into nearly all aspects of everyday business use, many business owners are recognizing the important role that social networking can play in the world of entrepreneurship.

Don't underestimate the power of social tools like Facebook, Twitter, LinkedIn and Yelp. Social networking can help a business gain contacts, clients, and increased public awareness.  Millions of people are already using web sites every day... ]]></description>
			<content:encoded><![CDATA[<h2>With Internet now integrated into nearly all aspects of everyday business use, many business owners are recognizing the important role that social networking can play in the world of entrepreneurship. </h2>
<p><span id="more-342"></span><br />
<br/></p>
<p>Don&#8217;t underestimate the power of social tools like Facebook, Twitter, LinkedIn and Yelp. Social networking can help a business gain contacts, clients, and increased public awareness.  Millions of people are already using web sites every day, and those companies using them are effectively generating income, attracting new customers, and more importantly creating a community around their products/company. The potential is enormous.  It’s just a matter of getting started. Shall we? </p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/services/social-networking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Houston Deaf Network</title>
		<link>http://www.be7a.com/client-projects/testing-portfolio/</link>
		<comments>http://www.be7a.com/client-projects/testing-portfolio/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 19:23:49 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Client projects]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=167</guid>
		<description><![CDATA[Houston Deaf Network unite resources, build support, educate and be heard by those who live in the Greater Houston Area]]></description>
			<content:encoded><![CDATA[<p class="voxdescription">Houston Deaf Network&#8217;s unite resources, build support, educate and be heard by those who live in the Greater Houston Area. Serve as a central hub where Deaf, Hard of Hearing and Hearing Houstonians can find a variety of useful information all in one place.</p>
<ul class="voxcard">
<li><strong>Company</strong>: Houston Deaf Network &#8211; BE7A</li>
<li><strong>Deliverables</strong>: Photoshop, XHTML, CSS, JQUERY, Wordpress</li>
<li><strong><a href="http://www.houstondeafnetwork.com" rel="external">Visit Websites</a></strong></li>
</ul>
<div class="clear"></div>
<p><br/><br />
<img src="http://www.be7a.com/wp-content/themes/v1.00/images/portfolio_HDN.jpg" class="vox" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/client-projects/testing-portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>March Promotion: 10% off any services</title>
		<link>http://www.be7a.com/latest-news/march-promotion-20-off/</link>
		<comments>http://www.be7a.com/latest-news/march-promotion-20-off/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 02:11:41 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Latest news]]></category>
		<category><![CDATA[discount]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=226</guid>
		<description><![CDATA[We are offering 10% off of any services from now through the end of March... ]]></description>
			<content:encoded><![CDATA[<p>We are offering 10% off of any services from now through the end of March.  Simply send us information what it is you need, and we&#8217;ll send you the price quote including the 10% off.  Hurry while it lasts!  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/latest-news/march-promotion-20-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhotoLadyProductions</title>
		<link>http://www.be7a.com/client-projects/photoladyproductions/</link>
		<comments>http://www.be7a.com/client-projects/photoladyproductions/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:57:55 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Client projects]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=205</guid>
		<description><![CDATA[A family operated business based in League City, Texas. ]]></description>
			<content:encoded><![CDATA[<p class="voxdescription"> A family operated business based in League City, Texas. PhotoLadyProductions specialize in creating made for TV DVD photo slide show presentations viewable on any DVD player. </p>
<ul class="voxcard">
<li><strong>Company</strong>: PhotoLadyProductions</li>
<li><strong>Deliverables</strong>: Logo, Photoshop, XHTML, CSS, Wordpress</li>
<li><strong><a href="http://www.photoladyproductions.com" rel="external">Visit Websites</a></strong></li>
</ul>
<div class="clear"></div>
<p><br/><br />
<img src="http://www.be7a.com/wp-content/themes/v1.00/images/portfolio_PLP.jpg" class="vox"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/client-projects/photoladyproductions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PsyMetricsGlobal</title>
		<link>http://www.be7a.com/client-projects/psymetricsglobal/</link>
		<comments>http://www.be7a.com/client-projects/psymetricsglobal/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:57:24 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Client projects]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=202</guid>
		<description><![CDATA[PsyMetrics Global is a performance management for sales and service organizations]]></description>
			<content:encoded><![CDATA[<p class="voxdescription">PsyMetrics Global is a performance management for sales and service organizations. Based on the research of Dr. David Barnett, PsyMetrics Global has created behavior-based assessments, innovative training, and customized tracking tools that are used around the world to improve productivity, reduce turnover, and prepare individuals for success.</p>
<ul class="voxcard">
<li><strong>Company</strong>: PsyMetrics Global</li>
<li><strong>Deliverables</strong>:  Photoshop, XHTML, CSS, Wordpress</li>
<li><strong><a href="http://www.psymetricsglobal.com" rel="external">Visit Websites</a></strong></li>
</ul>
<div class="clear"></div>
<p><br/><br />
<img src="http://www.be7a.com/wp-content/themes/v1.00/images/portfolio_PMG.jpg" class="vox"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/client-projects/psymetricsglobal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proficiency Master</title>
		<link>http://www.be7a.com/client-projects/proficiency-master/</link>
		<comments>http://www.be7a.com/client-projects/proficiency-master/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:54:02 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Client projects]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=200</guid>
		<description><![CDATA[Redesign logo brand to represent the idea of conservative yet effective results in sales and training]]></description>
			<content:encoded><![CDATA[<p class="voxdescription">Redesign logo brand to represent the idea of conservative yet effective results in sales and training.</p>
<ul class="voxcard">
<li><strong>Company</strong>: Proficiency Master &#8211; PsyMetricsGlobal</li>
<li><strong>Deliverables</strong>: Logo, Illustrator</li>
<li><strong><a href="http://proficiencymaster.com/ rel="external">Visit Website</a></strong></li>
</ul>
<div class="clear"></div>
<p><br/><br />
<img src="http://www.be7a.com/wp-content/themes/v1.00/images/portfolio_PM.jpg" class="vox" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/client-projects/proficiency-master/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Application</title>
		<link>http://www.be7a.com/services/mobile-application/</link>
		<comments>http://www.be7a.com/services/mobile-application/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 21:38:22 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=176</guid>
		<description><![CDATA[Establish the "always connected" relationship between your business and the rest of the world.  Everyone who wants to stay plugged in to the data they need - wherever they go.

Mobile web is exploding in popularity, and the trend is that it will only grow bigger and bigger. You might not see the benefits right now, but having a mobile presence is as important as having an internet presence... ]]></description>
			<content:encoded><![CDATA[<h2>Establish the connection between your business and the world of dynamic networking.  Information and data are important to have wherever people go.</h2>
<p><span id="more-176"></span><br />
<br/></p>
<p>Mobile web is exploding in popularity, and the trend is that it will only grow bigger and bigger. You might not see the benefits right now, but having a mobile presence is as important as having an internet presence.  Industry continuously adapt and provide tools in order to stay up to date. In the past few years, one of the biggest areas of change has been the amount of Internet users who are accessing websites via phones and mobile devices.</p>
<p>With iPhone, WebOS, Android, Win Mobile and more, mobile devices created a whole environment for mobile applications called the App Store. There are more applications in that store, and the number of apps keeps growing every week. With everyone investing on a solid presence on the mobile web, can you really afford to be left out?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/services/mobile-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows &amp; Mac’s standard fonts</title>
		<link>http://www.be7a.com/collective-thoughts/win-mac-standard-fonts/</link>
		<comments>http://www.be7a.com/collective-thoughts/win-mac-standard-fonts/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 02:24:50 +0000</pubDate>
		<dc:creator>Longster</dc:creator>
				<category><![CDATA[Collective thoughts]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.be7a.com/?p=148</guid>
		<description><![CDATA[This is a necessary reference I use when designing webpages.  Not everyone will see the same text...  ]]></description>
			<content:encoded><![CDATA[<p>This is a necessary reference I use when designing webpages.  Not everyone will see the same text design if your choice of fonts aren&#8217;t in user&#8217;s computer.  Meaning everyone&#8217;s browser who visit your webpage will only use pre-installed fonts in their computers despite of your font collection in your system.   There&#8217;s no way of knowing what font they have installed, but we can rely on standard fonts for both Windows and Mac. <span id="more-148"></span></p>
<p>The nice thing about CSS is the flexibility to control several values for <a href="http://www.w3schools.com/css/pr_font_font-family.asp">font-family property</a>.  For instance, if you decide to use your own fonts, you can put your first choice of font if user has it on their computer.  If not then the second choice of fonts would be next to display without messing up your layout.  This makes the task a bit easier.  Image fonts could work, but takes more time to upload and update information.</p>
<p>The information I gathered from goes to<a href="http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html#captures"> AmpSoft</a>.  Below are the common fonts on everyone&#8217;s computer.  </p>
<table cellspacing="0">
<caption class="white"><strong>Windows fonts / <span class="mac">Mac fonts</span> / <em>Font family</em></strong></caption>
<tr style="font-family: Arial, Helvetica, sans-serif; color: #FFFFFF">
<td>Arial, <span class="mac">Arial, Helvetica</span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: 'Arial Black', Gadget, sans-serif; color: #FFFFFF">
<td>Arial Black, <span class="mac">Arial Black, Gadget</span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: 'Comic Sans MS', Textile, cursive; color: #FFFFFF">
<td>Comic Sans MS, <span class="mac">Comic Sans MS<sup>5</sup></span>, <em>cursive</em></td>
</tr>
<tr style="font-family: 'Courier New', Courier, monospace; color: #FFFFFF">
<td>Courier New, <span class="mac">Courier New, Courier<sup>6</sup></span>, <em>monospace</em></td>
</tr>
<tr style="font-family: Georgia, 'Times New Roman', Times, serif; color: #FFFFFF">
<td>Georgia<sup>1</sup>, <span class="mac">Georgia</span>, <em>serif</em></td>
</tr>
<tr style="font-family: Impact, Charcoal, sans-serif; color: #FFFFFF">
<td>Impact, <span class="mac">Impact<sup>5</sup>, Charcoal<sup>6</sup></span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: 'Lucida Console', Monaco, monospace; color: #FFFFFF">
<td>Lucida Console, <span class="mac">Monaco<sup>5</sup></span>, <em>monospace</em></td>
</tr>
<tr style="font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif; color: #FFFFFF">
<td>Lucida Sans Unicode, <span class="mac">Lucida Grande</span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; color: #FFFFFF">
<td>Palatino Linotype, Book Antiqua<sup>3</sup>, <span class="mac">Palatino<sup>6</sup></span>, <em>serif</em></td>
</tr>
<tr style="font-family: Tahoma, Geneva, sans-serif; color: #FFFFFF">
<td>Tahoma, <span class="mac">Geneva</span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: 'Times New Roman', Times, serif; color: #FFFFFF">
<td>Times New Roman, <span class="mac">Times</span>, <em>serif</em></td>
</tr>
<tr style="font-family: 'Trebuchet MS', Helvetica, sans-serif; color: #FFFFFF">
<td>Trebuchet MS<sup>1</sup>, <span class="mac">Helvetica</span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: Verdana, Geneva, sans-serif; color: #FFFFFF">
<td>Verdana, <span class="mac">Verdana, Geneva</span>, <em>sans-serif</em></td>
</tr>
<tr class="symbol" style="font-family: Symbol; color: #FFFFFF">
<td>Symbol, <span class="mac">Symbol</span> <span style="font-family: Verdana; white-space: nowrap">(Symbol<sup>2</sup>, <span class="mac">Symbol<sup>2</sup></span>)</span></td>
</tr>
<tr class="symbol" style="font-family: Webdings; color: #FFFFFF">
<td>Webdings, <span class="mac">Webdings</span> <span style="font-family: Verdana; white-space: nowrap">(Webdings<sup>2</sup>, <span class="mac">Webdings<sup>2</sup></span>)</span></td>
</tr>
<tr class="symbol" style="font-family: Wingdings, 'Zapf Dingbats; color: #FFFFFF'">
<td>Wingdings,&nbsp;<span class="mac">Zapf&nbsp;Dingbats</span> <span style="font-family: Verdana; white-space: nowrap">(Wingdings<sup>2</sup>,&nbsp;<span class="mac">Zapf&nbsp;Dingbats<sup>2</sup></span>)</span></td>
</tr>
<tr style="font-family: 'MS Sans Serif', Geneva, sans-serif; color: #FFFFFF">
<td>MS Sans Serif<sup>4</sup>, <span class="mac">Geneva</span>, <em>sans-serif</em></td>
</tr>
<tr style="font-family: 'MS Serif', 'New York', serif; color: #FFFFFF">
<td>MS Serif<sup>4</sup>, <span class="mac">New York<sup>6</sup></span>, <em>serif</em></td>
</tr>
</table>
<div id="notes">
<p class="small"><sup>1</sup> Georgia and Trebuchet MS are bundled with Windows 2000/XP and they are also included in the IE font pack (and bundled with other MS applications), so they are quite common in Windows 98 systems.</p>
<p class="small"><sup>2</sup> Symbolic fonts are only displayed in Internet Explorer, in other browsers a font substitute is used instead (although the Symbol font does work in Opera and the Webdings works in Safari).</p>
<p class="small"><sup>3</sup> Book Antiqua is almost exactly the same font that Palatino Linotype, Palatino Linotype is included in Windows 2000/XP while Book Antiqua was bundled with Windows 98.</p>
<p class="small"><sup>4</sup> These fonts are not TrueType fonts but bitmap fonts, so they won&#8217;t look well when using some font sizes (they are designed for 8, 10, 12, 14, 18 and 24 point sizes at 96 DPI).</p>
<p class="small"><sup>5</sup> These fonts work in Safari but only when using the normal font style, and not with bold or italic styles. Comic Sans MS works in bold but not in italic. Other Mac browsers seems to emulate properly the styles not provided by the font (thanks to <a target="_blank" href="http://christianfecteau.com/">Christian Fecteau</a> for the tip).</p>
<p class="small"><sup>6</sup> These fonts are present in Mac OS X only if <strong>Classic</strong> is installed.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.be7a.com/collective-thoughts/win-mac-standard-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
