<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Office-it.orG &#187; Miscellaneous</title>
	<atom:link href="http://www.office-it.org/category/web-application/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.office-it.org</link>
	<description>All about Web and Desktop Application</description>
	<lastBuildDate>Tue, 20 Jul 2010 23:38:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to Permanent Redirect a Web Page</title>
		<link>http://www.office-it.org/how-to-permanent-redirect-a-web-page/</link>
		<comments>http://www.office-it.org/how-to-permanent-redirect-a-web-page/#comments</comments>
		<pubDate>Sun, 04 May 2008 06:44:54 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[301 Redirect]]></category>
		<category><![CDATA[Permanent Redirect]]></category>
		<category><![CDATA[Search Engine]]></category>

		<guid isPermaLink="false">http://www.office-it.org/?p=143</guid>
		<description><![CDATA[Sometimes we&#8217;ve just redesigned some pages of our web site. The pages have high search engine rankings that we don&#8217;t want to lose. How can we safely redirect web site traffic from our old pages to the new pages without losing our rankings? We should set up a permanent redirect (technically called a &#8220;301 redirect&#8221;) [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we&#8217;ve just redesigned some pages of our web site. The pages have high search engine rankings that we don&#8217;t want to lose. How can we safely redirect web site traffic from our old pages to the new pages without losing our rankings? </p>
<p>We should set up a permanent redirect (technically called a &#8220;301 redirect&#8221;) between these sites. Once we do that, we will get full search engine credit for our work on these sites. </p>
<p><span id="more-143"></span>301 redirect is useful too for search engines which may think, for example, www.office-it.org and office-it.org are two different sites. Let say, www.office-it.org seems to have 5 inbound links whereas office-it.org has 6 inbound links. By correctly configuring a permanent 301 redirect, the search rankings might improve as all inbound links are correctly counted for the website.</p>
<h2>What is 301 redirect?</h2>
<p>301 redirect is the best method to preserve our current search engine rankings when redirecting web pages or a web site. The code &#8220;301&#8243; is interpreted as &#8220;moved permanently&#8221;. If we have to change file names or move pages around, it&#8217;s the safest option.</p>
<p>Below are a couple of methods to implement URL Redirection.</p>
<p><strong>IIS Redirect</strong><br />
1. In internet services manager, right click on the file or folder we wish to redirect<br />
2. Select the radio titled &#8220;a redirection to a URL&#8221;<br />
3. Enter the redirection page<br />
4. Check &#8220;The exact url entered above&#8221; and the &#8220;A permanent redirection for this resource&#8221;<br />
5. Click on &#8216;Apply&#8217;</p>
<p><strong>ColdFusion Redirect</strong></p>
<pre lang="text">
<.cfheader statuscode="301" statustext="Moved permanently">
<.cfheader name="Location" value="http://www.new-url.com">
</pre>
<p><strong>PHP Redirect</strong></p>
<pre lang="text">

<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /home/icreativem/domains/office-it.org/public_html/wp-includes/feed-rss2.php:11) in <b>/home/icreativem/domains/office-it.org/public_html/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()'d code</b> on line <b>29</b>

<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /home/icreativem/domains/office-it.org/public_html/wp-includes/feed-rss2.php:11) in <b>/home/icreativem/domains/office-it.org/public_html/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()'d code</b> on line <b>30</b>
</pre>
<p><strong>ASP Redirect</strong></p>
<pre lang="text">
<%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location","http://www.new-url.com/"
%>
</pre>
<p><strong>ASP .NET Redirect</strong></p>
<pre lang="text">
<script runat="server">
private void Page_Load(object sender, System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www.new-url.com");
}
</script>
</pre>
<p><strong>JSP (Java) Redirect</strong></p>
<pre lang="text">
<%
response.setStatus(301);
response.setHeader( "Location", "http://www.new-url.com/" );
response.setHeader( "Connection", "close" );
%>
</pre>
<p><strong>CGI PERL Redirect</strong></p>
<pre lang="text">
$q = new CGI;
print $q->redirect("http://www.new-url.com/");
</pre>
<p><strong>Ruby on Rails Redirect</strong></p>
<pre lang="text">
def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-url.com/"
end
</pre>
<p><strong>Redirect Old domain to New domain (htaccess redirect)</strong></p>
<p>Create a .htaccess file with the below code, it will ensure that all directories and pages of our old domain will get correctly redirected to our new domain. The .htaccess file needs to be placed in the root directory of our old website (i.e the same directory where our index file is placed) </p>
<pre lang="text">
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
</pre>
<p>Please REPLACE www.newdomain.com in the above code with our actual domain name. </p>
<p>In addition to the redirect we would suggest that you contact every backlinking site to modify their backlink to point to your new website. </p>
<p>Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled. </p>
<p><strong>Redirect to www (htaccess redirect)</strong></p>
<p>Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.domain.com<br />
The .htaccess file needs to be placed in the root directory of our old website (i.e the same directory where our index file is placed) </p>
<pre lang="text">
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
</pre>
<p>Please REPLACE domain.com and www.newdomain.com with our actual domain name. </p>
<p>Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.</p>
<h2>Free Tool to Test</h2>
<p><a href="http://www.webconfs.com/redirect-check.php">Search Engine Friendly Redirect Checker</a> is the free web services to test redirection.</p>
<p><a href='http://www.webconfs.com/redirect-check.php'><img src="http://www.office-it.org/wp-content/uploads/2008/05/webconfs.gif" alt="Search Engine Friendly Redirect Checker" title="webconfs" width="253" height="81" class="alignnone size-full wp-image-144" /></a></p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=143&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/how-to-permanent-redirect-a-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenID Eliminates the Need for Multiple Usernames Across Different Websites</title>
		<link>http://www.office-it.org/openid-eliminates-the-need-for-multiple-usernames-across-different-websites/</link>
		<comments>http://www.office-it.org/openid-eliminates-the-need-for-multiple-usernames-across-different-websites/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 15:26:12 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[openid]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=101</guid>
		<description><![CDATA[The OpenID Foundation have announced that representatives from Google, IBM, Microsoft, VeriSign and Yahoo! have all joined its board, which means a massive step forward for the integration of singles IDs. What is OpenID? OpenID eliminates the need for multiple usernames across different websites, simplifying your online experience. You get to choose the OpenID Provider [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://openid.net/">The OpenID Foundation</a> have announced that representatives from Google, IBM, Microsoft, VeriSign and Yahoo! have all joined its board, which means a massive step forward for the integration of singles IDs.</p>
<p><a href="http://openid.net/"><img src='http://office-it.org/wp-content/uploads/2008/04/openidne.gif' alt='OpenID' /></a></p>
<h2>What is OpenID?</h2>
<p><a href="http://openid.net/">OpenID</a> eliminates the need for multiple usernames across different websites, simplifying your online experience.</p>
<p>You get to choose the <a href="http://openid.net/">OpenID</a> Provider that best meets your needs and most importantly that you trust. At the same time, your <a href="http://openid.net/">OpenID</a> can stay with you, no matter which Provider you move to. And best of all, the <a href="http://openid.net/">OpenID</a> technology is not proprietary and is completely free.</p>
<p><span id="more-101"></span>For businesses, this means a lower cost of password and account management, while drawing new web traffic. <a href="http://openid.net/">OpenID</a> lowers user frustration by letting users have control of their login.</p>
<h2>How do I get an OpenID?</h2>
<p>You may already have one. If you use any of the following services, you already have your own <a href="http://openid.net/">OpenID</a>:</p>
<p><a href="http://www.aol.com/"><img src="http://office-it.org/wp-content/uploads/2008/04/aol.png" alt="AOL" title="aol" width="16" height="16" class="alignnone size-medium wp-image-102" /> AOL</a> &#8211; openid.aol.com/<strong>screenname</strong></p>
<p><a href="http://www.blogger.com"><img src="http://office-it.org/wp-content/uploads/2008/04/blogger.ico" alt="Blogger" title="blogger" class="alignnone size-medium wp-image-103" /> Blogger</a> &#8211; <strong>username</strong>.blogger.com</p>
<p><a href="http://www.flickr.com"><img src="http://office-it.org/wp-content/uploads/2008/04/flickr.ico" alt="Flickr" title="flickr" class="alignnone size-medium wp-image-104" /> Flickr</a> &#8211; www.flickr.com/photos/<strong>username</strong></p>
<p><a href="http://www.livedoor.com"><img src="http://office-it.org/wp-content/uploads/2008/04/livedoor.ico" alt="LiveDoor" title="livedoor" class="alignnone size-medium wp-image-111" /> LiveDoor </a>- profile.livedoor.com/<strong>username</strong></p>
<p><a href="http://www.livejournal.com"><img src="http://office-it.org/wp-content/uploads/2008/04/livejournal.ico" alt="LiveJournal" title="livejournal" class="alignnone size-medium wp-image-112" /> LiveJournal</a> &#8211; <strong>username</strong>.livejournal.com</p>
<p><a href="http://www.orange.fr/"><img src="http://office-it.org/wp-content/uploads/2008/04/orange.ico" alt="Orange" title="orange" class="alignnone size-medium wp-image-110" /> Orange (France Telecom)</a> &#8211; http://openid.orange.fr/</p>
<p><a href="http://www.smugmug.com"><img src="http://office-it.org/wp-content/uploads/2008/04/smugmug.png" alt="SmugMug" title="smugmug" width="16" height="16" class="alignnone size-medium wp-image-109" /> SmugMug</a> &#8211; <strong>username.</strong>smugmug.com</p>
<p><a href="http://www.technorati.com"><img src="http://office-it.org/wp-content/uploads/2008/04/technorati.ico" alt="Technorati" title="technorati" class="alignnone size-medium wp-image-108" /> Technorati</a> &#8211; technorati.com/people/technorati/<strong>username</strong></p>
<p><a href="http://www.vox.com"><img src="http://office-it.org/wp-content/uploads/2008/04/vox.png" alt="Vox" title="vox" width="16" height="17" class="alignnone size-medium wp-image-107" /> Vox</a> &#8211; <strong>member</strong>.vox.com</p>
<p><a href="http://www.yahoo.com"><img src="http://office-it.org/wp-content/uploads/2008/04/yahoo.ico" alt="Yahoo!" title="yahoo" class="alignnone size-medium wp-image-106" /> Yahoo</a> &#8211; <a href="http://openid.yahoo.com/">http://openid.yahoo.com</a></p>
<p><a href="http://www.wordpress.com"><img src="http://office-it.org/wp-content/uploads/2008/04/wordpress.png" alt="Wordpress" title="wordpress" width="16" height="16" class="alignnone size-medium wp-image-105" /> WordPress.com</a> &#8211; <strong>username</strong>.wordpress.com </p>
<p>With over a quarter of a billion subscribers, <a href="http://openid.net/">OpenID</a> is now set to go big with its new big-name partners.</p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=101&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/openid-eliminates-the-need-for-multiple-usernames-across-different-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set Up Web Server with XAMPP</title>
		<link>http://www.office-it.org/set-up-web-server-with-xampp/</link>
		<comments>http://www.office-it.org/set-up-web-server-with-xampp/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 09:08:51 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://office-it.org/set-up-web-server-with-xampp/</guid>
		<description><![CDATA[If you want to install and set up a dynamic web server with Apache, a lot of applications such as Apache web server, mySQL database, PHP and Perl scripting language, and not to mention important extensions and tools to manage the web server’s applications. It’s not a easy and simple task. But luckily, there is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apachefriends.org/en/xampp.html"><img src='http://office-it.org/wp-content/uploads/2008/03/xampp.gif' alt='xampp' /></a></p>
<p>If you want to install and set up a dynamic web server with Apache, a lot of applications such as Apache web server, mySQL database, PHP and Perl scripting language, and not to mention important extensions and tools to manage the web server’s applications. It’s not a easy and simple task. But luckily, there is XAMPP from Apache Friends.</p>
<p>XAMPP is a collection of free software applications for installing and using the Apache Web server. There are different combination of applications depending on which XAMPP distributions. Currently there are four type of XAMPP distributions available: XAMPP for Linux (previously known as LAMPP), XAMPP for Windows, XAMPP for Mac OS X, XAMPP for Solaris. Typically, XAMPP is a full featured AMPP (Apache MySQL, PHP, Perl), an Apache distribution that includes the Apache Web server, MySQL database, PHP, Perl, FTP server and phpMyAdmin, with several other important and commonly used extension built-in, such as SSL.</p>
<p><span id="more-98"></span>To install and get your web server running, just download XAMPP in your OS flavour, extract it and then just start the web server. The Windows version even comes with a installer version, making life even simpler, making the installation of web server in Windows just a few clicks. You can get all the simple installation instructions at the XAMPP web pages where you download XAMPP. Beside, XAMPP for Windows also offers lite version, where it is the smaller bundle of XAMPP recommendable for a quick work around with PHP and MySQL.</p>
<p>Best of all, XAMPP is free, and so do the package of software applications that come with it.</p>
<p><a href="http://www.apachefriends.org/en/xampp.html">http://www.apachefriends.org/en/xampp.html</a>.</p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=98&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/set-up-web-server-with-xampp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazing 3D Photo Flip</title>
		<link>http://www.office-it.org/amazing-3d-photo-flip/</link>
		<comments>http://www.office-it.org/amazing-3d-photo-flip/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 14:02:44 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flip]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=56</guid>
		<description><![CDATA[Here is an amazing flash component for photo album with 3D flipping effect and motion blur. PhotoFLIP can help you to build a 3D photo album easily (full Action Script 3.0 API). The following is the live demo for PhotoFLIP. For more information, you can visit its website &#8211; http://www.digicrafts.com.hk/components/]]></description>
			<content:encoded><![CDATA[<p><img src='http://office-it.org/wp-content/uploads/2008/03/photoflipcs.jpg' alt='PhotoFlip' /></p>
<p>Here is an amazing flash component for photo album with 3D flipping effect and motion blur. PhotoFLIP can help you to build a 3D photo album easily (full Action Script 3.0 API). The following is the live demo for PhotoFLIP. For more information, you can visit its website &#8211; http://www.digicrafts.com.hk/components/</p>
<p><span id="more-56"></span><center><OBJECT codeBase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0 height=600 width=500 align=middle classid=clsid:d27cdb6e-ae6d-11cf-96b8-444553540000><PARAM NAME="allowScriptAccess" VALUE="sameDomain"><PARAM NAME="allowFullScreen" VALUE="false"><PARAM NAME="movie" VALUE="http://www.digicrafts.com.hk/components/flash/demo_photoflipcs.swf"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#ffffff"><br />
<embed src="http://www.digicrafts.com.hk/components/flash/demo_photoflipcs.swf" quality="high" bgcolor="#ffffff" width="500" height="600" align="middle" allowscriptaccess="sameDomain" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /><br />
</OBJECT></center></p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=56&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/amazing-3d-photo-flip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online .htaccess Files Creator &#8211; htaccessEditor</title>
		<link>http://www.office-it.org/online-htaccess-files-creator-htaccesseditor/</link>
		<comments>http://www.office-it.org/online-htaccess-files-creator-htaccesseditor/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 04:39:27 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Creator]]></category>
		<category><![CDATA[Online]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=53</guid>
		<description><![CDATA[.htaccess is a text file containing commands that instruct web servers how to behave in certain situations, providing a way for you to make configuration changes on a per-directory basis. .htaccess Editor enables you to easily create .htaccess files online without having to learn complex .htaccess rules. With the .htaccess editor, you can generate .htaccess [...]]]></description>
			<content:encoded><![CDATA[<p>.htaccess is a text file containing commands that instruct web servers how to behave in certain situations, providing a way for you to make configuration changes on a per-directory basis.</p>
<p><a href="http://www.htaccesseditor.com/en.shtml"><img src="http://www.htaccesseditor.com/share/images/common_files/logo_en.gif" alt=".htaccess Editor" /></a></p>
<p><a href="http://www.htaccesseditor.com/en.shtml">.htaccess Editor</a> enables you to easily create .htaccess files online without having to learn complex .htaccess rules. With the .htaccess editor, you can generate .htaccess code includes:</p>
<p>    * Basic authentication &#8211; used to specify the security restrictions for the particular directory.<br />
    * Custom error pages &#8211; redirect visitors to pages that match your site design instead of the standard server error pages.<br />
    * Password protection &#8211; restrict access to certain directories by requiring a password to view the contents.<br />
    * Default pages &#8211; set default pages on a directory-by-directory basis.<br />
    * Redirect directives &#8211; redirect requests for a specific file or directory to a new destination.<br />
    * Access restrictions &#8211; allowed or denied certain addresses.</p>
<p>Creating .htaccess files has never been easier with <a href="http://www.htaccesseditor.com/en.shtml">.htaccess Editor</a>.</p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=53&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/online-htaccess-files-creator-htaccesseditor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Map out your visitors</title>
		<link>http://www.office-it.org/map-out-your-visitors/</link>
		<comments>http://www.office-it.org/map-out-your-visitors/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 17:18:53 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Map]]></category>
		<category><![CDATA[visitor]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=51</guid>
		<description><![CDATA[As a site or blog owner, you definately want to know where your visitors come from. I found a nice widget which can help you get to see exactly where your site visitors are from &#8211; live! Embeddable maps are available in two sizes, one just like the map to your right, and a smaller [...]]]></description>
			<content:encoded><![CDATA[<p>As a site or blog owner, you definately want to know where your visitors come from. I found a nice widget which can help you get to see exactly where your site visitors are from &#8211; live!</p>
<p><img src="http://whos.amung.us/images/showcase/map_bottom.gif" alt="Map out your visitors" /></p>
<p>Embeddable maps are available in two sizes, one just like the map to your right, and a smaller version for sites that could use the savings in space. You can build your own by <a href="http://maps.amung.us/">clicking here</a>.</p>
<p>The following is sample map for <a href="http://www.office-it.org/">Office-it.orG</a>.</p>
<p><embed src="http://maps.amung.us/flash/flashsrv.php?k=bwy09jyo&#038;type=emb.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always" allowNetworking="all" type="application/x-shockwave-flash" flashvars="wausitehash=bwy09jyo&#038;map=natural&#038;pin=default-red&#038;link=yes" width="420" height="230" /></p>
<p><span id="more-51"></span>Other than this, <a href="http://whos.amung.us/">whos.amung.us</a> provide other useful services too.</p>
<p><img src="http://whos.amung.us/images/misc/3dwauwidget.gif" alt="The Original" /> <img src="http://whos.amung.us/images/showcase/graph_bottom.gif" alt="Visitor History" /> </p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=51&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/map-out-your-visitors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Beautiful HTML Code Looks Like</title>
		<link>http://www.office-it.org/what-beautiful-html-code-looks-like/</link>
		<comments>http://www.office-it.org/what-beautiful-html-code-looks-like/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 04:34:04 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=44</guid>
		<description><![CDATA[I have an addiction. I can’t help but view source on every nice looking website I see. It’s like if you had x-ray glasses that allowed you to see any person you ever saw in their underwear at will. How could you not? It’s just so tempting to see if a beautiful website is built [...]]]></description>
			<content:encoded><![CDATA[<p>I have an addiction. I can’t help but <em>view source</em> on every nice looking website I see. It’s like if you had x-ray glasses that allowed you to see any person you ever saw in their underwear at will. How could you not?</p>
<p>It’s just so tempting to see if a beautiful website is built with beautiful code as well, or if it’s beauty if only skin-deep. Code? Beautiful? Sure. After all, Code is Art. This is just HTML, so it can’t be quite as intricate and elegant as a dynamic language, but it still bears the brush strokes of it’s creator and there is craftsmanship abound.</p>
<p>It gets me to thinking, what makes beautiful code? <strong>In HTML, it really comes down to craftsmanship.</strong> It’s all those little things added up that make the whole. Here is a list of just some of the little things that I look for in other’s code and that I try to do myself that make for good craftsmanship in HTML:</p>
<p><span id="more-44"></span>
<ul>
<li><strong>DOCTYPE Properly Declared</strong><br />
It looks like a lot of gibberish, but DOCTYPES are important. They not only allow your code to validate, but they tell browsers things about how to render your page. Simple &lt;html&gt; tags don’t cut it.</li>
<li><strong>Tidy Head Section</strong><br />
Title is set. Character set declared. Stylesheets linked (including a print stylesheet!). Scripts linked and NOT included in full. External files have their own related folders (e.g. “CSS” &amp; “Scripts”)</li>
<li><strong>Body IDed</strong><br />
Putting an ID on your body allows you to create CSS properties that are unique to that page. For instance, you may want your &lt;h2&gt; tags to look different on the homepage. In your CSS you can write: #home h2 {} to accomplish this and not affect &lt;h2&gt; tags elsewhere.</li>
<li><strong>Semantically Clean Menu</strong><br />
You’ve seen it before, you’ll see it again. There is a reason unordered lists are used for menus. Because it really gives you a lot of control.</p>
<pre lang="html">
<div id=”menu”>
<ul>
<li><a href=”index.php”>Home</a></li>
<li><a href=”about.php”>About</a></li>
<li><a href=”contact.php”>Contact</a></li>
</ul>
</div>
</pre>
</li>
<li><strong>Main DIV for all Page Content</strong><br />
Putting all the content of your page into one main “wrap” DIV gives you lots of control right off the bat. There is where you can set the width of your page for a fixed width site or maximums and minimums for a fluid width site.</li>
<li><strong>Important Content First</strong><br />
It is best if your most important content, like news and events, can be listed first in the HTML. If your sidebar is just navigation or less important content, it is best if it comes last in the HTML.</li>
<li><strong>Common Content INCLUDED</strong><br />
A lot of web content is common from page to page. Think menu bars, sidebars, footers, “boxes”, etc. This kind of content should be dynamically loaded. Either from a database or with simple PHP include statements.</li>
<li><strong>Code is Tabbed into Sections</strong><br />
If each section of code is tabbed in once, the structure of the code is much more understandable. Code that is all left-justified is horrific to read and understand.</li>
<li><strong>Proper Ending Tags</strong><br />
You started strong, now end strong. Don’t be lazy and exclude closing tags for any element, even if the page renders OK without them.</li>
<li><strong>Hierarchy of Header Tags</strong><br />
Use header tags as they were designed, to create titles for sections and signify their position in the content hierarchy.</li>
<li><strong>Content, Content, Content</strong><br />
This is where your content belongs, so go nuts. Remember to keep your paragraphs distinct and in &lt;p&gt; tags. Use lists where appropriate. Use codes like © for © symbols. Don’t go overboard with &lt;br /&gt; tags, that’s sloppy formatting.</li>
<li><strong>No Styling!</strong><br />
Your HTML should be focused on structure and content, not styling! Keep all of your styling in your CSS, there should be no deprecated tags (e.g &lt;font&gt;) in site.</li>
</ul>
<p><a href="http://office-it.org/wp-content/uploads/2008/01/cleancode.jpg" title="What Beautiful HTML Code Looks Like"><img src="http://office-it.org/wp-content/uploads/2008/01/cleancode.thumbnail.jpg" alt="What Beautiful HTML Code Looks Like" /></a></p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=44&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/what-beautiful-html-code-looks-like/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GMX &#8211; Global Mail X-change</title>
		<link>http://www.office-it.org/gmx-global-mail-x-change/</link>
		<comments>http://www.office-it.org/gmx-global-mail-x-change/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 14:58:44 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=42</guid>
		<description><![CDATA[Stay connected wherever you are! GMX Webmail gives you the freedom you need and the reliability you demand. Join over 10,000,000 satisfied users worldwide and receive: Unprecedented Spam Protection Maximum Virus Protection 5 GB E-Mail Storage Space All of this, plus the convenience of one web-based solution to manage all your e-mails. 100% free! http://www.gmx.com/ [...]]]></description>
			<content:encoded><![CDATA[<p>Stay connected wherever you are! GMX Webmail gives you the freedom you need and the reliability you demand. Join over 10,000,000 satisfied users worldwide and receive:</p>
<ul>
<li>Unprecedented Spam Protection</li>
<li>Maximum Virus Protection</li>
<li>5 GB E-Mail Storage Space</li>
</ul>
<p>All of this, plus the convenience of one web-based solution to manage all your e-mails. 100% free!</p>
<p><a href="http://www.gmx.com/">http://www.gmx.com/</a></p>
<p><span id="more-42"></span><strong>Switch to GMX and Keep Using Your Other E-Mail Addresses</strong></p>
<p>GMX Mail is flexible and easy to use. Even seemingly complicated tasks like switching e-mail accounts is a breeze. Thanks to the GMX Mail Collector, all messages from your existing accounts will be collected and sorted into separate folders in your GMX mailbox.</p>
<p>What&#8217;s more, your e-mails collected by GMX will be inspected by GMX&#8217;s professional and spam protection tools.</p>
<p>Send e-mails with your other addresses as the sender (e.g., jane742@gmail.com) while keeping track of every message. Manage all your e-mails with only one platform!</p>
<p><img src="http://images.gmx.com/images/gmx/com/us/en/home/feature/managingotheraccounts.gif" /></p>
<p><strong>Intuitive User-Friendliness And Adaptability</strong></p>
<p>With GMX Mail, you&#8217;re entering a new world of e-mail communications. The user-friendly interface is cross-platform compatible with Windows, Linux and Mac OS/X using Internet Explorer or Firefox.</p>
<p>Manage your e-mails with intuitive Drag &amp; Drop functionality. Simply create a folder, give it a name, and populate it with as many e-mails as you&#8217;d like. Easy! And if you&#8217;re searching for a specific e-mail, our intelligent search function guarantees that you&#8217;ll find what you&#8217;re looking for, fast!</p>
<p>E-mails sent via GMX are as dynamic as you are. You can format text, add photos or emoticons, and even create a personalized background. Never before has webmail been so convenient &#8211; and fun!</p>
<p>Plus, with Mail Collector service, you can apply the full power of GMX to your other e-mail accounts as well. All for <span style="font-weight: 700">FREE!</span></p>
<p><img src="http://images.gmx.com/images/gmx/com/us/en/home/feature/webmailwithdesktop.gif" /></p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=42&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/gmx-global-mail-x-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Books for Learning Prototype &amp; Scriptaculous</title>
		<link>http://www.office-it.org/two-books-for-learning-prototype-scriptaculous/</link>
		<comments>http://www.office-it.org/two-books-for-learning-prototype-scriptaculous/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 03:31:59 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Manning]]></category>
		<category><![CDATA[Pragmatic]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Scriptaculous]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=37</guid>
		<description><![CDATA[Common Ajax tasks should be easy, and with Prototype and Scriptaculous they are. Prototype and Scriptaculous are libraries of reusable JavaScript code that simplify Ajax development. Prototype provides helpful methods and objects that extend JavaScript in a safe, consistent way. Its clever Ajax request model simplifies cross-browser development. Scriptaculous, which is based on Prototype, offers [...]]]></description>
			<content:encoded><![CDATA[<p>Common Ajax tasks should be easy, and with Prototype and Scriptaculous they are. Prototype and Scriptaculous are libraries of reusable JavaScript code that simplify Ajax development. Prototype provides helpful methods and objects that extend JavaScript in a safe, consistent way. Its clever Ajax request model simplifies cross-browser development. Scriptaculous, which is based on Prototype, offers handy pre-fabricated widgets for rich UI development.</p>
<p>Two books recommended here:</p>
<p><strong>(1) Prototype and Scriptaculous in Action</strong></p>
<p><img src="http://www.manning.com/crane3/crane3_cover150.jpg" alt="Prototype and Scriptaculous in Action" align="left" height="188" width="150" /><em>Prototype and Scriptaculous in Action</em> is a comprehensive, practical guide that walks you feature-by-feature through the two libraries. First, you’ll use Scriptaculous to make easy but powerful UI improvements. Then you’ll dig into Prototype’s elegant and sparse syntax. See how a few characters of Prototype code can save a dozen lines of JavaScript. By applying these techniques, you can concentrate on the function and flow of your application instead of the coding details. This book is written for web developers with a working knowledge of JavaScript.</p>
<p><strong>Sample Chapter:</strong><br />
<a href="http://www.manning.com/crane3/ch8.pdf" target="_blank">Chapter 8</a><br />
<a href="http://www.manning.com/crane3/ch4sample.pdf" target="_blank">Sample Chapter 4</a><br />
<a href="http://www.manning.com/crane3/ch6sample.pdf" target="_blank">Sample Chapter 6</a></p>
<div style="clear:both"></div>
<p><span id="more-37"></span><strong>(2) Prototype and script.aculo.us: You never knew JavaScript could do this!</strong></p>
<p><img src="http://www.pragprog.com/images/covers/190x228/cppsu.jpg" alt="Prototype and script.aculo.us: You never knew JavaScript could do this!" align="left" height="228" width="190" />Tired of getting swamped in the nitty-gritty of cross-browser, Web 2.0-grade JavaScript? Get back in the game with Prototype and script.aculo.us, two extremely popular JavaScript libraries, that make it a walk in the park. Be it <span class="caps">AJAX</span>, drag and drop, auto-completion, advanced visual effects, or many other great features, all you need is write one or two lines of script that look so good they could almost pass for Ruby code!</p>
<p><strong>Sample Chapter:</strong><br />
<a href="http://media.pragprog.com/titles/cppsu/toc.pdf" target="_blank">Table of Contents</a><br />
<a href="http://media.pragprog.com/titles/cppsu/chap7.pdf" target="_blank">Chapter 7: Form Management</a><br />
<a href="http://media.pragprog.com/titles/cppsu/chap8.2.pdf" target="_blank">Chapter 8, Section 2: Hitting the Road: Ajax.Request</a></p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=37&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/two-books-for-learning-prototype-scriptaculous/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>86 Beautiful Typefaces For Professional Design</title>
		<link>http://www.office-it.org/80-beautiful-typefaces-for-professional-design/</link>
		<comments>http://www.office-it.org/80-beautiful-typefaces-for-professional-design/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 14:30:25 +0000</pubDate>
		<dc:creator>Hii Hiong Ching</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[typeface]]></category>
		<category><![CDATA[typo]]></category>

		<guid isPermaLink="false">http://office-it.org/?p=24</guid>
		<description><![CDATA[You don’t like to scroll? Be prepared. (We warned you.) Every now and again designers stumble upon the very same problem: the choice of a unique and beautiful typeface which manages to fulfill three basic tasks. Support the corporate identity, enrich the visual appearance and is compatible with the overall design. However, usually there are [...]]]></description>
			<content:encoded><![CDATA[<p>You don’t like to scroll? Be prepared. <em>(We warned you.)</em></p>
<p>Every now and again designers stumble upon the very same problem: <strong>the choice of a unique and beautiful typeface</strong> which manages to fulfill three basic tasks. Support the corporate identity, enrich the visual appearance and is compatible with the overall design. However, usually there are simply too many options you can consider, which is why you need time to find the option you are most comfortable with. Although the choice usually depends on clients’ requirements, it is <strong>necessary to have some pretty starting points</strong> for your font decision.</p>
<p>So which typefaces are “bulletproof”? What fonts can be used effectively in almost every Corporate Design? And what are the options for unique, but still incredibly beautiful typefaces?</p>
<p><strong>We have answers.</strong> Over the last few days we’ve browsed through dozens of type foundries, read dozens of designers’ articles about typography, analyzed font rankings and visited bookmarked font-related suggestions. So this post has ‘em all. Well, OK, at least many of them.</p>
<p>Let’s take a look at <strong>over 80 gorgeous typefaces for professional design, based upon suggestions from designers and web-developers all over the world</strong>. Most screenshots are taken from the foundries and provided specimens &#8211; particularly on <a href="http://www.veer.com/">Veer.com</a> and <a href="http://www.fontshop.com/">Fontshop.com</a>.</p>
<p><span id="more-24"></span></p>
<h3>Classic Typefaces</h3>
<p>Classics of typography in a brief overview. You will find even more traditional typefaces on the site <a href="http://www.100besteschriften.de/">100 Best Fonts</a>, including history, development and related information.</p>
<h3>1. Helvetica</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/helvetica.gif" alt="Helvetica" title="Helvetica" height="393" width="469" /></p>
<h3>2. Helvetica Neue</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/helvetica-neue.gif" alt="Helvetica Neue" title="Helvetica Neue" height="544" width="478" /></p>
<h3>3. Univers</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/univers-std.gif" alt="Univers" title="Univers" height="472" width="445" /></p>
<h3>4. Frutiger</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/frutiger.gif" alt="Frutiger" title="Frutiger" height="560" width="395" /></p>
<h3>5. Avenir</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/avenir-std.gif" alt="Avenir" title="Avenir" height="448" width="501" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/avenir.gif" alt="Avenir" title="Avenir" height="508" width="500" /></p>
<h3>6. Myriad Pro</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/myriad-pro.gif" alt="Myriad Pro" title="Myriad Pro" height="546" width="503" /></p>
<h3>7. Neuzeit</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/neuzeit.gif" alt="Neuzeit" title="Neuzeit" height="191" width="410" /></p>
<h3>8. Syntax</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/syntax.gif" alt="Syntax" title="Syntax" height="571" width="357" /></p>
<h3>9. Proxima Nova</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/proxima-nova.gif" alt="Proxima Nova" title="Proxima Nova" height="577" width="397" /></p>
<h3>10. Proxima Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/proxima-sans.gif" alt="Proxima Sans" title="Proxima Sans" height="583" width="415" /></p>
<h3>11. Glasgow</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/glasgow.gif" alt="Glasgow" title="Glasgow" height="545" width="388" /></p>
<h3>12. Charlotte Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/charlotte-sans.gif" alt="Charlotte Sans" title="Charlotte Sans" height="487" width="398" /></p>
<h3>13. Precious Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/precious-sans.gif" alt="Precious Sans" title="Precious Sans" height="224" width="500" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/precious-sans-2.gif" alt="Precious Sans" title="Precious Sans" height="588" width="388" /></p>
<h3>14. Gill Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/gill-sans.gif" alt="Gill Sans" title="Gill Sans" height="381" width="374" /></p>
<h3>15. Lisboa</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/lisboa.gif" alt="Lisboa" title="Lisboa" height="578" width="385" /></p>
<h3>16. Franklin Gothic</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/franklin-gothic.gif" alt="Franklin Gothic" title="Franklin Gothic" height="498" width="421" /></p>
<h3>17. Futura</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/futura.gif" alt="Futura" title="Futura" height="523" width="338" /></p>
<h3>18. EF TV Nord 1</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ef-tv.gif" alt="EF TV Nord 1" title="EF TV Nord 1" height="284" width="374" /></p>
<h3>19. FF Scala</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ffscala.gif" alt="FF Scala" title="FF Scala" height="538" width="219" /></p>
<h3>20. Rockwell</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/rockwell.gif" alt="Rockwell" title="Rockwell" height="576" width="393" /></p>
<h3>21. Eurostile</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/eurostile.gif" alt="Eurostile" title="Eurostile" height="389" width="413" /></p>
<h3>22. Warnock</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/warnock.gif" alt="Warnock" title="Warnock" height="486" width="368" /></p>
<h3>23. FF DIN</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ffdin.gif" alt="FF DIN" title="FF DIN" height="284" width="468" /></p>
<h3>24. FF Meta</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ffmeta3.gif" alt="FF Meta" title="FF Meta" height="286" width="248" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ffmeta2.gif" alt="FF Meta" title="FF Meta" height="229" width="514" /></p>
<h3>25. Officina</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/officina-sans.gif" alt="Officina" title="Officina" height="413" width="311" /></p>
<h3>26. FF Dax</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ffdax.gif" alt="FF Dax" title="FF Dax" height="464" width="357" /></p>
<h3>27. DF Dynasty</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/df-dynasty.gif" alt="DF Dynasty" title="DF Dynasty" height="568" width="277" /></p>
<h3>28. Akzidenz-Grotesk</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/akz-head.gif" alt="Akzidenz-Grotesk" title="Akzidenz-Grotesk" height="72" width="480" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/akzidenz-grotesk.gif" alt="Akzidenz-Grotesk" title="Akzidenz-Grotesk" height="403" width="480" /></p>
<h3>29. AG Book</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ag-book-pro.gif" alt="AG Book" title="AG Book" height="144" width="480" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ag-book.gif" alt="AG Book" title="AG Book" height="358" width="476" /></p>
<h3>30. Precious Serif</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/precious-serif.gif" alt="Precious Serif" title="Precious Serif" height="531" width="405" /></p>
<h3>Further Typefaces</h3>
<p>The fonts listed below aren’t so well-known. Thus you can use them for unique corporate identity or user interfaces which are supposed to have a “fresh” look.</p>
<h3>31. Locator</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/locator.gif" alt="Locator" title="Locator" height="457" width="500" /></p>
<p><a href="http://www.processtypefoundry.com/">ProcessTypeFoundry</a></p>
<h3>32. Seravek</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/seravek.gif" alt="Seravek" title="Seravek" height="484" width="500" /></p>
<p><a href="http://www.processtypefoundry.com/">ProcessTypeFoundry</a></p>
<h3>33. FF Kievit</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ffkievit.gif" alt="FF Kievit" title="FF Kievit" height="115" width="500" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/kievit.gif" alt="FF Kievit" title="FF Kievit" height="497" width="500" /></p>
<p><a href="http://www.daidala.com/kievit.html">Source</a></p>
<h3>34. Ronnia</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ronnia.gif" alt="Ronnia" title="Ronnia" height="508" width="516" /></p>
<p><a href="http://type-together.com/font_ronnia_home.php">Typetogether</a></p>
<h3>35. Stella</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/stella.gif" alt="Stella" title="Stella" height="503" width="500" /></p>
<p><a href="http://www.felicianotypefoundry.com/main/?page_id=23">Feliciano Type Foundry</a></p>
<h3>36. Le Monde Courrier</h3>
<p><a href="http://www.typofonderie.com/alphabets/view/LeMondeCourrier"><img src="http://office-it.org/wp-content/uploads/2008/01/lemonde.gif" alt="Screenshot" title="Screenshot" height="378" width="500" /></a></p>
<p><a href="http://www.typofonderie.com/alphabets/view/LeMondeCourrier">Le Monde Courrier</a>, € 167.4 for 2 PCs</p>
<h3>37. Parisine PTF</h3>
<p><a href="http://www.typofonderie.com/alphabets/view/ParisinePTF"><img src="http://office-it.org/wp-content/uploads/2008/01/parisine.gif" alt="Screenshot" title="Screenshot" height="463" width="529" /></a></p>
<p><a href="http://www.typofonderie.com/alphabets/view/ParisinePTF">Parisine PTF</a>, € 210 for 8 PCs</p>
<h3>38. Freight</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/freight-sans.gif" alt="Freight Sans" title="Freight Sans" height="569" width="458" /></p>
<p><a href="http://www.joshuadarden.com/shop/freightsans.php">Source</a></p>
<h3>39. Guardian</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/guardian.gif" alt="Guardian" title="Guardian" height="419" width="406" /></p>
<p><a href="http://christianschwartz.com/gdnsans.shtml">Christian Schwartzl</a></p>
<h3>40. Anomoly</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/anomoly.gif" alt="Anomoly" title="Anomoly" height="529" width="500" /></p>
<h3>41. PMN Caecilia</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/pmn-caecilia.gif" alt="PMN Caecilia" title="PMN Caecilia" height="457" width="500" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/pmn-caecilia-2.gif" alt="PMN Caecilia" title="PMN Caecilia" height="504" width="400" /></p>
<h3>42. Leitura</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/leitura.gif" alt="Leitura" title="Leitura" height="597" width="448" /></p>
<p><a href="http://www.spatium-magazin.de/">Source</a> / <a href="http://www.dstype.com/main.htm">DSType</a></p>
<h3>43. The Mix</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/themix.gif" alt="The Mix" title="The Mix" height="503" width="500" /></p>
<p><a href="http://www.daidala.com/themix.html">Source</a></p>
<h3>44. Stalemate</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/stalemate.gif" alt="Stalemate" title="Stalemate" height="529" width="500" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/stalemate-2.gif" alt="Stalemate" title="Stalemate" height="554" width="421" /></p>
<h3>45. Neo Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/neosans.gif" alt="Neo Sans" title="Neo Sans" height="488" width="500" /></p>
<p><a href="http://www.monotypefonts.com/">Source</a></p>
<h3>46. Felbridge</h3>
<p><a href="http://www.monotype.co.uk/felbridge/"><img src="http://office-it.org/wp-content/uploads/2008/01/felbridge.gif" alt="Felbridge" title="Felbridge" height="418" width="498" /></a></p>
<p><a href="http://www.monotype.co.uk/felbridge/">Felbridge</a>, £29.00 per font</p>
<h3>47. Trade Gothic</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/trade-gothic.gif" alt="Trade Gothic" title="Trade Gothic" height="490" width="500" /></p>
<h3>48. Karmina</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ds-karmina.gif" alt="Karmina" title="Karmina" height="513" width="510" /></p>
<p><a href="http://type-together.com/font_ronnia_home.php">Typetogether</a></p>
<h3>49. FF Milo</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ff-milo.gif" alt="FF Milo" title="FF Milo" height="122" width="500" /></p>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/milo.gif" alt="FF Milo" title="FF Milo" height="305" width="380" /></p>
<p>Source: <a href="http://typographica.org/001103.php">Typographica.org</a></p>
<h3>50. Auto</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/auto.gif" alt="Auto" title="Auto" height="519" width="518" /></p>
<p><a href="http://www.underware.nl/site2/index.php3?id1=auto&amp;id2=overview">Source</a></p>
<h3>51. Soho</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/soho.gif" alt="Soho" title="Soho" height="457" width="500" /></p>
<p><a href="http://www.monotype.co.uk/sohoMF/">Source</a></p>
<h3>52. Kepler</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/kepler.gif" alt="Kepler" title="Kepler" height="430" width="500" /></p>
<p><a href="http://www.daidala.com/17mar2004.html">Source</a></p>
<h3>53. Depot</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/depot.gif" alt="Depot" title="Depot" height="521" width="522" /></p>
<p><a href="http://www.moretype.co.uk/">Chris Dickinson</a></p>
<h3>54. Relato Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/relato-sans.gif" alt="Relato Sans" title="Relato Sans" height="350" width="522" /></p>
<p><a href="http://www.emtype.net/relatosans_1.html">Source</a></p>
<h3>55. Priva Pro</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/priva-pro.gif" alt="Priva Pro" title="Priva Pro" height="523" width="524" /></p>
<p><a href="http://www.dstype.com/main.htm">DSType</a></p>
<h3>56. Relato Serif</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/relato-serif.gif" alt="Relato Serif" title="Relato Serif" height="468" width="553" /></p>
<p><a href="http://www.emtype.net/relato_1.html">Source</a></p>
<h3>57. Alber</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/alber.gif" alt="Alber" title="Alber" height="500" width="468" /></p>
<p><a href="http://www.moretype.co.uk/">Chris Dickinson</a></p>
<h3>58. Palatino Sans &amp; Informal</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/palatinosans-formal.gif" alt="Palatino Sans Informal" title="Palatino Sans Informal" height="473" width="500" /></p>
<p><a href="http://www.kimeratype.com/">Source</a></p>
<h3>59. Fedra Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/fedra-sans.gif" alt="Fedra Sans" title="Fedra Sans" height="474" width="500" /></p>
<p><a href="http://www.typotheque.com/fonts/fedra_sans/">Source</a></p>
<h3>60. Olga</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/olga.gif" alt="Olga" title="Olga" height="518" width="500" /></p>
<p><a href="http://www.tdc.org/news/2007Results/Olga.html">Source</a></p>
<h3>61. Depot</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/depot.gif" alt="Depot" title="Depot" height="521" width="522" /></p>
<p><a href="http://www.moretype.co.uk/">Chris Dickinson</a></p>
<h3>62. Priva Pro</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/priva-pro.gif" alt="Priva Pro" title="Priva Pro" height="523" width="524" /></p>
<p><a href="http://www.dstype.com/main.htm">DSType</a></p>
<h3>63. Whitman</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/whitman.gif" alt="Whitman" title="Whitman" height="493" width="489" /></p>
<p><a href="http://www.fontbureau.com/fonts/serif/Whitman">Source</a></p>
<h3>64. Productus</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/productus.gif" alt="Productus" title="Productus" height="453" width="487" /></p>
<p><a href="http://www.fontbureau.com/fonts/sans/Productus">Source</a></p>
<h3>65. Tempelhof</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/tempelhof.gif" alt="Tempelhof" title="Tempelhof" height="252" width="544" /></p>
<p><a href="http://www.t26.com/fonts/showcase/2006/08">Günter Schwarzmaier</a></p>
<h3>66. Amira</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/amira.gif" alt="Amira" title="Amira" height="549" width="501" /></p>
<p><a href="http://www.fontbureau.com/fonts/Amira">Source</a></p>
<h3>67. Krart</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/krart.gif" alt="Krart" title="Krart" height="251" width="500" /></p>
<p><a href="http://www.t26.com/fonts/Krart">Source</a></p>
<h3>68. Tang</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/tang.gif" alt="Tang" title="Tang" height="362" width="500" /></p>
<p><a href="http://www.type.fi/SuomiHome.html">Source</a></p>
<h3>69. Dederon Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/dederon-sans.gif" alt="Dederon Sans" title="Dederon Sans" height="538" width="500" /></p>
<p><a href="http://www.suitcasetype.com/page.php?lmut=en&amp;section=font&amp;font=dederon%20Sans">Source</a></p>
<h3>70. Samuels Family</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/samuels-family.gif" alt="Samuels Family" title="Samuels Family" height="446" width="521" /></p>
<p>(Images: <a href="http://www.myfonts.com/newsletters/cc/200707.html">MyFonts Newsletter</a>)</p>
<h3>71. Untitled</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/untitled.gif" alt="Untitled" title="Untitled" height="306" width="500" /></p>
<p><a href="http://www.tdc.org/news/2007Results/Untitled.html">Source</a></p>
<h3>72. Greta Text</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/greta-text.gif" alt="Greta Text" title="Greta Text" height="248" width="500" /></p>
<p><a href="http://www.typotheque.com/fonts/greta_text/">Source</a></p>
<h3>73. FF Sanuk</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/ff-sanuk.gif" alt="FF Sanuk" title="FF Sanuk" height="101" width="500" /></p>
<h3>74. Houschka</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/houschka.gif" alt="Houschka" title="Houschka" height="546" width="459" /></p>
<h3>75. Scene</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/scene.gif" alt="Scene" title="Scene" height="548" width="380" /></p>
<p><a href="http://www.fonts.com/findfonts/detail.asp?pid=400853">Source</a></p>
<h3>76. Amplitude</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/amplitude.gif" alt="Amplitude" title="Amplitude" height="541" width="503" /></p>
<p><a href="http://www.fontbureau.com/fonts/Amplitude">Source</a></p>
<h3>77. Insider</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/insider.gif" alt="Insider" title="Insider" height="501" width="360" /></p>
<p><a href="http://www.characters.nl/">Characters.nl</a></p>
<h3>78. Preface</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/preface.gif" alt="Preface" title="Preface" height="358" width="500" /></p>
<h3>79. Flex</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/flex.gif" alt="Flex" title="Flex" height="425" width="500" /></p>
<p><a href="http://www.type-invaders.com/flex/">Source</a></p>
<h3>80. Halvorsen</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/halvorsen.gif" alt="Halvorsen" title="Halvorsen" height="122" width="500" /></p>
<p><a href="http://www.t26.com/fonts/Halvorsen">Source</a></p>
<h3>81. Xtra Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/xtra-sans.gif" alt="Xtra Sans" title="Xtra Sans" height="305" width="500" /></p>
<p><a href="http://www.jarnolukkarila.com/template.php?yksikko=format_design&amp;sivu=font_library&amp;alasivu=xtra_sans&amp;lang=en&amp;catID=1">Source</a></p>
<h3>Foretaste for one of our next posts:<br />
The Future of Typography</h3>
<h3>82. Obliqua (in development)</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/obliqua.gif" alt="Obliqua" title="Obliqua" height="471" width="370" /></p>
<p><a href="http://www.flickr.com/photos/cpuertas/543915014/">Source</a></p>
<h3>83. Muestra Urbana (in development)</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/muestra-urbana.gif" alt="Muestra Urbana" title="Muestra Urbana" height="485" width="381" /></p>
<p><a href="http://www.flickr.com/photos/cpuertas/569466696/">Source</a></p>
<h3>84. Wingardium</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/wingardium.gif" alt="Wingardium" title="Wingardium" height="488" width="348" /></p>
<p><a href="http://www.flickr.com/photos/macniaco/149614426/in/set-72057594139789886/">Source</a></p>
<h3>85. Tauran Regular</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/tauran.gif" alt="Tauran Regular" title="Tauran Regular" height="457" width="302" /></p>
<p><a href="http://www.flickr.com/photos/macniaco/149615395/in/set-72057594139789886/">Source</a></p>
<h3>86. Mello Sans</h3>
<p><img src="http://office-it.org/wp-content/uploads/2008/01/mellosans.gif" alt="Mello Sans" title="Mello Sans" height="563" width="391" /></p>
<p><a href="http://www.flickr.com/photos/macniaco/149614424/in/set-72057594139789886/">Source</a></p>
<img src="http://www.office-it.org/?ak_action=api_record_view&id=24&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.office-it.org/80-beautiful-typefaces-for-professional-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

