<?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>GWT Blog - GlobalWorldTech &#187; Mobile Web presence</title>
	<atom:link href="http://www.gwtindia.com/tag/mobile-web-presence/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gwtindia.com</link>
	<description></description>
	<lastBuildDate>Sun, 29 Jan 2012 06:20:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to create a Mobile Website?</title>
		<link>http://www.gwtindia.com/how-to-create-a-mobile-website/</link>
		<comments>http://www.gwtindia.com/how-to-create-a-mobile-website/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 08:08:20 +0000</pubDate>
		<dc:creator>Satinder</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[how to create a mobile website]]></category>
		<category><![CDATA[Mobile Web presence]]></category>

		<guid isPermaLink="false">http://www.gwtindia.com/?p=610</guid>
		<description><![CDATA[In earlier posts we mention that the mobile space has a range of device types and content often renders better when tailored to specific device characteristics or features. Adaptation is about exploiting those features where they exist, while avoiding them in others. Another part of adaptation requires working around problems found in specific devices. Adaptation [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>In earlier posts we mention that the mobile space has a range of device types and content often renders better when tailored to specific device characteristics or features. Adaptation is about exploiting those features where they exist, while avoiding them in others. Another part of adaptation requires working around problems found in specific devices. Adaptation can occur at the server or at the client side (the device). It’s also possible for adaptation to take place in the network, and operators frequently do some adaptation between your Web site and the device.</p>
<h3>Client Side Adaptation</h3>
<p>Client side adaptation usually relies on using the media selectors associated with CSS. Stylesheets can provide a different experience for the same page on mobile by using the ‘<em><strong>handheld</strong></em>’ media type. While this can be a useful form of adaptation, it is limited. The mobile downloads the same XHTML markup as a desktop browser, which might unnecessarily taking time and cost the user money with content that’s ends up not being displayed. To include different mobile and desktop stylesheets in your document, add link elements like the following:</p>
<p><em><strong>link href=&#8221;screen.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221;<br />
link href=&#8221;mobile.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; media=&#8221;handheld&#8221;</strong></em></p>
<p>Alternatively, screen and handheld styles can appear in the same style sheet, using the @media CSS rule. For example, if you wanted to suppress the display of an image in the mobile presentation, identify the image element using the id attribute (calling it ‘image1’), and then refer to it within the style sheet:</p>
<p><strong>@media handheld<br />
{<br />
#image1<br />
{display: none}<br />
}<br />
</strong><br />
Note that most browsers will still download the image, and users will suffer the delay and cost of doing this. So client side adaptation with CSS is mainly useful when varying the presentation style, or order of the content.</p>
<p><strong>Scripting is another technique for client side adaptation</strong>. In the desktop world scripting is often used to accommodate differences between browsers. However, on mobile more care has to be taken, because low-end devices often include no or limited support for scripts. But for high end devices—where you know the device capabilities—this can be a handy technique.</p>
<h3>Server Side Adaptation</h3>
<p>Server side adaptation comes in various forms. At its simplest, it relates to using scripting to vary small parts of the page delivery. One example is changing the HTTP Content-Type header attached to the content but, it’s not typical to use the content type <em><strong>text/html</strong></em> when delivering to mobile devices. On the other hand, when delivering such pages to some versions of Internet Explorer on the desktop, it can be more effective to use that content type. In this example, the adaptation would consist of a test to see which User Agent (browser) accesses the page and deliver the chosen header based on whether the browser is Internet Explorer or not.</p>
<p>The following is a simple (and incomplete) example of how to do this in the server side scripting language PHP:</p>
<p><em><strong>$msie = strpos($_SERVER[“HTTP_USER_AGENT”],’MSIE’) > 0;<br />
if (!$msie)<br />
{<br />
header(“Content-Type: application/xhtml+xml; charset=UTF-8”);}<br />
else {<br />
header(“Content-Type: text/html; charset=UTF-8”);<br />
}</strong></em></p>
<p>Other examples of varying the content to better suit device characteristics include presenting an appropriately sized image for the device accessing the page. A good general guidance for low-end devices is to limit images to 120px width. Those with high-end devices will have a much better experience if the image fits their screen and its color depth. Because it wastes bandwidth to transfer images that are bigger than the screen can handle, it’s good practice to resize images at the server prior to transmission. Do this by preparing specifically sized images in advance and choosing the biggest size that will fit; or dynamically resize the image at the point of delivery.</p>
<p>Both approaches have advantages: The former is better when the image must preserve specific details. The advantage of dynamic resizing is its ability to fit an image exactly to the device.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gwtindia.com%2Fhow-to-create-a-mobile-website%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gwtindia.com%2Fhow-to-create-a-mobile-website%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Reads:590<div class="shr-publisher-610"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:60px;'><a class='shareaholic-fblike' data-shr_layout='box_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.gwtindia.com%2Fhow-to-create-a-mobile-website%2F' data-shr_title='How+to+create+a+Mobile+Website%3F'></a><a class='shareaholic-googleplusone' data-shr_size='tall' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.gwtindia.com%2Fhow-to-create-a-mobile-website%2F' data-shr_title='How+to+create+a+Mobile+Website%3F'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.gwtindia.com%2Fhow-to-create-a-mobile-website%2F' data-shr_title='How+to+create+a+Mobile+Website%3F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.gwtindia.com/how-to-create-a-mobile-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Benefits of Mobile Web</title>
		<link>http://www.gwtindia.com/benefits-of-mobile-web/</link>
		<comments>http://www.gwtindia.com/benefits-of-mobile-web/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 10:23:00 +0000</pubDate>
		<dc:creator>Satinder</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Mobile Project]]></category>
		<category><![CDATA[Mobile Web presence]]></category>

		<guid isPermaLink="false">http://www.gwtindia.com/?p=564</guid>
		<description><![CDATA[The Web has revolutionized how we interact with and publish information, but up to now it has only been accessible to people with desktop devices. Web-enabled mobile phones now extend the expected global reach of the Web to three times that of today, touching one-third of the population of the planet. Some of the more [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>The Web has revolutionized how we interact with and publish information, but up to now it has only been accessible to people with desktop devices. Web-enabled mobile phones now extend the expected global reach of the Web to three times that of today, touching one-third of the population of the planet.</p>
<p>Some of the more important benefits of the Mobile Web are:
<ul>
<li>It can enable <strong>access to information, any time and anywhere</strong> there is cell phone coverage. By freeing information from the restrictions of a desk or search for a nearby WiFi hotspot, people can quickly retrieve and exchange information.</li>
<li><strong>It provides vast connectivity.</strong> One-third of the population currently has access to the Internet through a mobile device. This number is twice as many as the number of Internet-connected personal computers (PCs).</li>
<li>It enables services to take advantage of mobile device capabilities such as clicking on a phone number to call it or add it to the device address book.</li>
<li><strong>It can provide location-based content.</strong> Location technologies can enable location-based information be provided to a user. This can reduce the steps required for the user to reach useful content, and so makes it accessible with the least amount of effort.</li>
</ul>
<p>In a fast-growing mobile society, businesses, organizations and individuals need to reach and interact with their customers while mobile. For content providers, it opens a new and more profitable revenue stream, without having to rely on mobile service provider portals.</p>
<h3>When should I start?</h3>
<p>You should start a mobile project by defining the overall goals for the site. Consider grouping these into the following three categories for easier management and using their related questions to define goals:</p>
<ul>
<li><strong>Business:</strong> These come from your project’s business goals and should be clearly defined before you begin. What are your organization’s goals? How does a mobile presence help your organization achieve its goals? Does it improve my current business reach? Does it provide new business opportunities? Is there an opportunity for innovation? Depending on your business case, you could choose anything between providing a great experience on all mobile devices, or creating a basic web site with free tools in a short time.</li>
<li><strong>User:</strong> User goals (and sometimes constraints) reflect your audience’s goals. How does your audience benefit from a mobile presentation? What tasks will they accomplish with your mobile content? Does the immediacy of mobile help the user? How will they interact with your content? Context is big in mobile, so the key is to understand your users’ wants and needs. Ensure that you value the attention, time and money of your audience, i.e. value your customer.</li>
<li><strong>Technical:</strong> Technology and resource opportunities and constraints. Look at these goals as a triangle or three-legged stool. When making decisions, try to find and maintain a balance on all three sides: business, user and technical. If you lean on one side too much or too little, then the other sides suffer.</li>
</ul>
<p>User goals usually make a great place to start, and this is especially true when considering mobile.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.gwtindia.com%2Fbenefits-of-mobile-web%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.gwtindia.com%2Fbenefits-of-mobile-web%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
Reads:1013<div class="shr-publisher-564"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:60px;'><a class='shareaholic-fblike' data-shr_layout='box_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.gwtindia.com%2Fbenefits-of-mobile-web%2F' data-shr_title='Benefits+of+Mobile+Web'></a><a class='shareaholic-googleplusone' data-shr_size='tall' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.gwtindia.com%2Fbenefits-of-mobile-web%2F' data-shr_title='Benefits+of+Mobile+Web'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.gwtindia.com%2Fbenefits-of-mobile-web%2F' data-shr_title='Benefits+of+Mobile+Web'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.gwtindia.com/benefits-of-mobile-web/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

