HTML: New field types

HTML5 supports a number of new field types, especially for <input> like date, number, email which will support mobile users to be displayed with a customized editor for certain fields (like numbers for number fields and date picker for date fields) input[type=”number”] Will give an input field, which only allows numbers or decimals. On supporting […]

Read More

HTML: Basics

HTML5 Gerüst <!DOCTYPE html> <html lang=”de”> <head> <meta charset=”utf-8″ /> <title>HTML5 Layout</title> <link rel=”stylesheet” href=”css/main.css” type=”text/css” /> </head> <body> … </body> </html>   IE8 und früher nachrüsten Über das JavaScript-Polyfill html5shiv werden neue HTML5 Elemente wie <section>, <article>, <figure> für Internet Explorer 8 und früher verständlich gemacht.1 http://code.google.com/p/html5shiv/ [↩]

Read More