Build your meta-information in seconds.
Git
git clone https://github.com/kuriv/initialize.git
npm
npm install @kuriv/initialize
Download
https://kuriv.github.io/initialize/initialize.html
Declare the character encoding used by the document.
<meta charset="utf-8">
Enable DNS pre-resolving.
<meta http-equiv="x-dns-prefetch-control" content="on">
DNS pre-resolved domain name.
<link rel="dns-prefetch" href="">
Give priority to the latest version of IE and Chrome.
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
Set the browser to render the page with the webkit kernel.
<meta name="renderer" content="webkit">
Force the browser to render the page with the webkit kernel.
<meta name="force-rendering" content="webkit">
Add the authoritative link of the page.
<link rel="canonical" href="">
Add the viewport to mobile device.
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
Ignore phone numbers and email addresses on the page.
<meta name="format-detection" content="telephone=no, email=no">
Add the Windows tile name.
<meta name="application-name" content="">
Add the Windows tile color.
<meta name="msapplication-TileColor" content="">
Add the Windows tile image.
<meta name="msapplication-TileImage" content="">
Display the download banner of the app on the page.
<meta name="apple-itunes-app" content="app-id=, affiliate-data=, app-argument=">
Set the title added to the home screen.
<meta name="apple-mobile-web-app-title" content="">
Add the Standard iPhone icons, 57x57 pixels.
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="">
Add the Standard iPad icons, 72x72 pixels.
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="">
Add the Retina iPhone icons, 114x114 pixels.
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="">
Add the Retina iPad icons, 144x144 pixels.
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="">
Remove default toolbar and menu bar.
<meta name="apple-mobile-web-app-capable" content="yes">
Set the background color of the status bar.
<meta name="apple-mobile-web-app-status-bar-style" content="default">
Add the theme color to browser's toolbar. (Chrome for Android only)
<meta name="theme-color" content="">
Display the search function on the browser's quick search tool.
<link rel="search" type="application/opensearchdescription+xml" title="" href="">
Add the author of the page.
<meta name="author" content="kuriv">
Add the title of the page.
<title></title>
Add the keywords of the page.
<meta name="keywords" content="">
Add the description of the page.
<meta name="description" content="">
Add the icon in front of the page title.
<link rel="shortcut icon" type="image/x-icon" href="">
initialize
is open-sourced software licensed under the MIT license .