Teaching PhoneGap – Write Apps in Javascript and HTML5

I’ll teach the next mobile development course in PhoneGap. The Haaga-Helia course Mobiilituotekehitys bus4tn008-2 will be in Finnish. The course seems to be fully booked already, but you can get a place if someone cancels. I’ll teach the course with … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , , , , | 2 Comments

Getting Started with OpenLayers and OpenStreetmap

Add a free, interactive map on your homepage. Just plain HTML5 and JavaScript, no special server needed. Live demo with source. No API keys needed. And if you really like it, you can later download planet vector data for free! … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Comments Off on Getting Started with OpenLayers and OpenStreetmap

Bootstrap CSS – Quickly Style Your HTML5 Page – Skeleton

Bootstrap (from Twitter), is a Free CSS framework. Bootstrap has table-free layouts, navbars, buttons, icons and automatic scaling for mobile devices. Copy bootstrap.css and bootstrap-responsive.css to your website, link the stylesheets and you’re ready to go. <!doctype html> <html> <head> … Continue reading

Posted in Uncategorized | Tagged , , , , , | 1 Comment

Short HTML5 page

Start writing your HTML5 page with this “Hello world”. Test your page with validator.w3.org. Charset is needed for scandics and other special characters. Short valid HTML page <!doctype html> <html> <head> <title>Tero’s Test Page</title> <meta charset=”utf-8″ /> </head> <body> <h1>Tero’s … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Comments Off on Short HTML5 page