views:

65

answers:

2

It's a very long time since I've looked at anything in the mobile world so I'm very out of touch. I have a website (done in ASP.Net) that is running live at the moment and I need to make a mobile version of it.

What's the best/most frequently used format of pages to serve up to mobiles these days? Is it a cut down HTML page with few graphics etc or is it WML or something else?

Types of handsets being targetted could be anything - just what people have in their pockets I suppose.

Thanks

+1  A: 

I don't think some of the smart phones like the iPhone do WML. I would stick to XHTML with small graphics (not merely HTML--XHTML is a must because it is less processor intensive, and you should write good code anyway).

quadelirus
http://www.w3.org/TR/xhtml-basic/
quadelirus
And are there any generic emulators out there to see what the XHTML page looks like on various devices?
Ciaran
I normaly do this process: 1) Test with Firefox plugin [1], 2) test with emulator (nokia, openwave, some web simulators) and 3) test in real mobiles [1] https://addons.mozilla.org/es-ES/firefox/addon/1345?collection_id=66e24e77-d0f9-7c24-a2b3-cb9cf8d40d4a
fravelgue
+2  A: 

This article might help you alot. It's from Smashing Magazine.

Mobile Web Design Trends For 2009

There is additional considerations to keep in mind when designing for mobile web. Sitepoint provided an insightful list in this article.

  1. Don't Mix Up Your Markup
  2. Know Your Phones
  3. Target the Right Customers
  4. Publish the Bare Minimum
  5. Choose a Great Domain Name
  6. Validate Your Markup
  7. Test, Test, TEST!
Pascal Paradis