diff options
author | Daniel Freedman <dfreedm2@gmail.com> | 2012-06-12 10:42:46 -0700 |
---|---|---|
committer | Daniel Freedman <dfreedm2@gmail.com> | 2012-06-12 10:42:46 -0700 |
commit | be625fc19ee1f7705a5210c3f54313fcad8c48b9 (patch) | |
tree | 6413898e49c3e271e5b8c70c8b77891b3216a196 /index.html | |
parent | b3d233c1fb80cf839985586d70cbb5edeeb2680f (diff) | |
download | biblez-ng-be625fc19ee1f7705a5210c3f54313fcad8c48b9.tar.gz |
fix doctype for IE standards mode, specify charset early so browser can render faster
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,9 +1,10 @@ -<!doctype html> +<!DOCTYPE html> <html> <head> <title>Enyo Bootplate App</title> <link rel="shortcut icon" href="assets/favicon.ico"> <!-- --> + <meta http-equiv="Content-Type" content="text/html; charset=utf8"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="viewport" content="width=device-width initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- css --> |