<?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>Devil is Blogging &#187; Web Designing</title>
	<atom:link href="http://devildesigns.net/blog/category/web-designing/feed/" rel="self" type="application/rss+xml" />
	<link>http://devildesigns.net/blog</link>
	<description>The best thing about a boolean is even if you are wrong, you are only off by a bit.</description>
	<lastBuildDate>Sat, 27 Mar 2010 19:17:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Round corners with CSS3. Super Cool.</title>
		<link>http://devildesigns.net/blog/round-corners-with-css3-super-cool/</link>
		<comments>http://devildesigns.net/blog/round-corners-with-css3-super-cool/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 08:40:26 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Designing]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Round Corner]]></category>

		<guid isPermaLink="false">http://dna.intellwiz.com/?p=66</guid>
		<description><![CDATA[I was not very fond of CSS, until recently.  I just used html elements to style my pages. But then once I happened to use some simple CSS elements, coz I had basic CSS in my college syllabus. Ever since I&#8217;m a great fan and admirer of this simple, kewl technique.. CSS. deviroinvinciusdevildesigns I have [...]


Related posts:<ol><li><a href='http://devildesigns.net/blog/25-incredibly-useful-and-cool-firefox-addons-for-geeks-and-web-developers/' rel='bookmark' title='Permanent Link: 25 Incredibly Useful and Cool Firefox Addons for Geeks and Web Developers'>25 Incredibly Useful and Cool Firefox Addons for Geeks and Web Developers</a> <small>Hey guys, a lot of people (well, not so much...</small></li>
<li><a href='http://devildesigns.net/blog/browse-in-iphone-without-an-iphone-android-too/' rel='bookmark' title='Permanent Link: Browse in iPhone without an iPhone (Android too)'>Browse in iPhone without an iPhone (Android too)</a> <small>Hey guys, ever wanted to see how Gmail looks in...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/' onclick="pageTracker._trackPageview('/outgoing/mitcho.com/code/yarpp/?referer=');">Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I was not very fond of CSS, until recently.  I just used html elements to style my pages. But then once I happened to use some simple CSS elements, coz I had basic CSS in my college syllabus. Ever since I&#8217;m a great fan and admirer of this simple, kewl technique.. CSS. deviroinvinciusdevildesigns </p>
<p><img class="size-full wp-image-69 alignright" title="CSS-Round-Corner" src="http://blog.devildesigns.net/wp-content/uploads/2009/04/round-corner.png" alt="CSS Round Corner Menu" width="370" height="66" /></p>
<p>I have been fascinated by round cornered elements in web pages. I tried to learn the &#8216;secret art of round corners!!&#8217;. Most of my searches returned tutorials for rounding corners using images, Including <a title="Rounded Corners using CSS and 4 corner images" href="http://kalsey.com/2003/07/rounded_corners_in_css/" onclick="pageTracker._trackPageview('/outgoing/kalsey.com/2003/07/rounded_corners_in_css/?referer=');">this one</a>. It uses 4 corner images and is pretty simple to implement.</p>
<p>A few days ago, I was browsing through some script from <a title="DynamicDrive CSS Library" href="http://dynamicdrive.com/style" onclick="pageTracker._trackPageview('/outgoing/dynamicdrive.com/style?referer=');">DynamicDrive CSS Library</a>, I found an unfamiliar css element: <span style="color: #339966;">-moz-border-radius</span>. I did a lil research and eventually I got to CSS3. Checkout <a href="http://css3.info/" onclick="pageTracker._trackPageview('/outgoing/css3.info/?referer=');">www.css3.info</a>. CSS3 is still in draft and all browsers have not started to support it. Yet some like Firefox, Safari etc has already started to adopt CSS3.</p>
<p><span style="color: #339966;">border-radius <span style="color: #000000;">(<a title="border-radius" href="http://www.w3.org/TR/css3-background/#border-radius" onclick="pageTracker._trackPageview('/outgoing/www.w3.org/TR/css3-background/_border-radius?referer=');">reference</a>)</span> </span>is an element which is included in the forthcoming CSS3. It can be used in the following forms.</p>
<p>If you use <span style="color: #008000;">border-radius: 4em;<span style="color: #000000;"> , then all the four corners will be rounded by 4em. Or you can use </span></span><span style="color: #008000;">border-radius: 5px 5px 0px 10px;</span><span style="color: #008000;"><span style="color: #000000;">, so you can use individual radii for all the four corners. Or the single attribute can be broken down as follows. </span></span></p>
<p><span style="color: #008000;">border-top-left-radius:     4em;<br />
border-top-right-radius:    4em;<br />
border-bottom-right-radius: 4em;<br />
border-bottom-left-radius:  4em;</span></p>
<p><span style="color: #008000;"><span style="color: #000000;"> The <a title="Gecko Layout Engine" href="http://en.wikipedia.org/wiki/Gecko_(layout_engine)" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Gecko_layout_engine?referer=');">Gecko Layout Engine</a> which is the basis of Mozilla Firefox uses some equivalent attributes instead of </span></span><span style="color: #008000;">border-radius.<span style="color: #000000;"> The <span style="color: #008000;">border-radius</span> equivalent in Gecko is </span><span style="color: #008080;">-moz-border-radius</span><span style="color: #000000;"> (<a title="-moz-border-radius" href="https://developer.mozilla.org/en/CSS/-moz-border-radius" onclick="pageTracker._trackPageview('/outgoing/developer.mozilla.org/en/CSS/-moz-border-radius?referer=');">reference</a>). It can also take 4 arguments as in <span style="color: #008080;">-moz-border-radius:15px 0px 15px 0px;</span>. If only 1 attribute is specified as in <span style="color: #008080;">-moz-border-radius:15px;</span>, the same will be applied for all 4 corners. </span></span><span style="color: #008000;"><span style="color: #008080;">-moz-border-radius</span><span style="color: #000000;"> </span></span><span style="color: #008000;"><span style="color: #000000;">can also be written as 4 different elements as follows.</span></span></p>
<p><span style="color: #008000;"><span style="color: #000000;"><span style="color: #008080;"> -moz-border-radius-bottomleft:15px;<br />
-moz-border-radius-bottomright:15px;<br />
-moz-border-radius-topright:15px;<br />
-moz-border-radius-topleft:15px;</span></span></span></p>
<p><span style="color: #008000;"><span style="color: #000000;"><span style="color: #008080;"><span style="color: #000000;"><a href="http://blog.devildesigns.net/wp-content/uploads/2009/04/border-radius.htm" onclick="pageTracker._trackPageview('/outgoing/blog.devildesigns.net/wp-content/uploads/2009/04/border-radius.htm?referer=');">Here</a> is a few examples I made which uses the </span></span></span></span><span style="color: #008000;"><span style="color: #008080;">-moz-border-radius</span><span style="color: #000000;"> </span></span><span style="color: #008000;"><span style="color: #000000;"><span style="color: #008080;"><span style="color: #000000;">element for rounding corners. See the code of the page and see how simple it is. But remember </span></span></span></span><span style="color: #008000;"><span style="color: #008080;">-moz-border-radius</span></span><span style="color: #008000;"><span style="color: #000000;"><span style="color: #008080;"><span style="color: #000000;"> works only in Gecko based browsers, which includes Firefox, NetScape, Camino, SeaMonkey K-Meleon etc (</span></span></span></span>Google&#8217;s picture-organization software Picasa is based on Gecko<span style="color: #008000;"><span style="color: #000000;"><span style="color: #008080;"><span style="color: #000000;">).</span></span></span></span></p>
<p><span style="color: #008000;"><span style="color: #000000;"><span style="color: #008080;"><span style="color: #000000;">That was Kewl, ain&#8217;t it? cya, babye.<br />
</span></span></span></span></p>
<img src="http://devildesigns.net/blog/?ak_action=api_record_view&id=66&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fdevildesigns.net%2Fblog%2Fround-corners-with-css3-super-cool%2F&amp;linkname=Round%20corners%20with%20CSS3.%20Super%20Cool." onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fdevildesigns.net_2Fblog_2Fround-corners-with-css3-super-cool_2F_amp_linkname=Round_20corners_20with_20CSS3._20Super_20Cool.&amp;referer=');"><img src="http://devildesigns.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a></p>

<p>Related posts:<ol><li><a href='http://devildesigns.net/blog/25-incredibly-useful-and-cool-firefox-addons-for-geeks-and-web-developers/' rel='bookmark' title='Permanent Link: 25 Incredibly Useful and Cool Firefox Addons for Geeks and Web Developers'>25 Incredibly Useful and Cool Firefox Addons for Geeks and Web Developers</a> <small>Hey guys, a lot of people (well, not so much...</small></li>
<li><a href='http://devildesigns.net/blog/browse-in-iphone-without-an-iphone-android-too/' rel='bookmark' title='Permanent Link: Browse in iPhone without an iPhone (Android too)'>Browse in iPhone without an iPhone (Android too)</a> <small>Hey guys, ever wanted to see how Gmail looks in...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/' onclick="pageTracker._trackPageview('/outgoing/mitcho.com/code/yarpp/?referer=');">Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://devildesigns.net/blog/round-corners-with-css3-super-cool/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free hosting &#8211; should you choose? Which is the best?</title>
		<link>http://devildesigns.net/blog/free-hosting-should-you-choose-which-is-the-best/</link>
		<comments>http://devildesigns.net/blog/free-hosting-should-you-choose-which-is-the-best/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 13:10:26 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Web Designing]]></category>
		<category><![CDATA[Free Hosting]]></category>

		<guid isPermaLink="false">http://dna.intellwiz.com/?p=50</guid>
		<description><![CDATA[The web is full of interesting stuff, the more interesting part is that most of them are free. Take the case of web servers. All my websites (spare my projects) lies in free web space. I doubt why would someone go after paid hosting when they can get as good or even better hosting.. for [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/' onclick="pageTracker._trackPageview('/outgoing/mitcho.com/code/yarpp/?referer=');">Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The web is full of interesting stuff, the more interesting part is that most of them are free. Take the case of web servers. All my websites (spare my projects) lies in free web space. I doubt why would someone go after paid hosting when they can get as good or even better hosting.. for FREE. deviroinvinciusdevildesigns </p>
<p>Yeah, you must me careful in choosing the hosting provider. Some free hosts sucks.  The main problem with many of the free hosts is uptime (server online time). Actually I liked the free hosting provided by <a title="wsnw.net" onclick="pageTracker._trackPageview('/outgoing/www.wsnw.net/?referer=');javascript:pageTracker._trackPageview ('/outbound/www.wsnw.net');" href="http://www.wsnw.net/">Websites Network,</a> but after a few days, I found myself searching for another one, their uptime is pathetic.</p>
<p>Then I used <a title="HostSnake.com" onclick="pageTracker._trackPageview('/outgoing/hostsnake/?referer=');javascript:pageTracker._trackPageview ('/outbound/HostSnake');" href="http://hostsnake/">HostSnake</a> , another good one, and it was new to the scene. Had many good features, but soon they started putting up large banners above and below my pages. Then I was totally desperate and was beginning to believe that all free hosts suck. It was then my friend told me to try <a title="X10Hosting.com" onclick="pageTracker._trackPageview('/outgoing/x10hosting/?referer=');javascript:pageTracker._trackPageview ('/outbound/x10hosting');" href="http://x10hosting/" target="_blank">x10hosting,</a> the signup process was a bit lengthier, but their service was great. The best thing is ofcourse the uptime, (but you have to signup in their forum!!). Now almost all my sites including this one runs on X10 servers. They are offering MySql databases,addon domains,subdomains and many other features.</p>
<p>So from my experience and experiments with free hosting for over two years, let me point the good ones for you.</p>
<p><a href="http://www.x10hosting.com/" onclick="pageTracker._trackPageview('/outgoing/www.x10hosting.com/?referer=');"><img class="alignnone size-full wp-image-51" title="x10logo" src="http://blog.devildesigns.net/wp-content/uploads/2009/02/x10logo.gif" alt="x10logo" width="220" height="57" /></a> &#8211; Adfree, PHP, MySQL, addon domains, subdomains, scripts installer, MX records etc… great uptime too.</p>
<p><a href="http://pages.google.com" onclick="pageTracker._trackPageview('/outgoing/pages.google.com?referer=');"><img class="alignnone size-full wp-image-17" title="Google Pages Logo" src="http://blog.devildesigns.net/wp-content/uploads/2009/02/logo-labs.gif" alt="Google Pages Logo" width="140" height="50" /></a> &#8211; No PHP, No addon domains, Easy to use, online page creator, very fast loading, Great for novices. [ Google Pages is no more taking new sign ups, instead they have come up with another hosting service with more features, <a href="http://sites.google.com" onclick="pageTracker._trackPageview('/outgoing/sites.google.com?referer=');">Google Sites</a> ]</p>
<p><a href="http://www.officelive.com" onclick="pageTracker._trackPageview('/outgoing/www.officelive.com?referer=');"><img class="alignnone size-full wp-image-18" title="Office Live Logo" src="http://blog.devildesigns.net/wp-content/uploads/2009/02/office-live-logo.jpg" alt="Office Live Logo" width="129" height="47" /></a> -Superb hosting! Online page editing, addon domains, email ids, super fast loading etc. Great for novices,small businesses,startups etc. Lots of templates.</p>
<p><a href="http://www.110mb.com" onclick="pageTracker._trackPageview('/outgoing/www.110mb.com?referer=');"><strong>110mb</strong></a> hosting is also cool, but some features like addon domain, mysql databases etc are paid features. Worth checking out</p>
<p>These are the best services I have ever encountered. Choose x10hosting if you are really into PHP hosting and projects that require more freedom. Choose Google Pages if you don&#8217;t want to spend a lot of time editing your pages and want to get it all done so quick. It is as simple as Google itself. You can opt Microsoft Office Live if you need a Great website for your business, school or personal. More options to configure, but sure they are worth.</p>
<p>Have a lot of fun making a great website. Bye</p>
<p>[ We are offerring professional class hosting at an affordable price, <a href="http://www.intellwiz.com/hosting" onclick="pageTracker._trackPageview('/outgoing/www.intellwiz.com/hosting?referer=');">check out the prices</a> ]</p>
<img src="http://devildesigns.net/blog/?ak_action=api_record_view&id=50&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fdevildesigns.net%2Fblog%2Ffree-hosting-should-you-choose-which-is-the-best%2F&amp;linkname=Free%20hosting%20%26%238211%3B%20should%20you%20choose%3F%20Which%20is%20the%20best%3F" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fdevildesigns.net_2Fblog_2Ffree-hosting-should-you-choose-which-is-the-best_2F_amp_linkname=Free_20hosting_20_26_238211_3B_20should_20you_20choose_3F_20Which_20is_20the_20best_3F&amp;referer=');"><img src="http://devildesigns.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/' onclick="pageTracker._trackPageview('/outgoing/mitcho.com/code/yarpp/?referer=');">Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://devildesigns.net/blog/free-hosting-should-you-choose-which-is-the-best/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
