-
Notifications
You must be signed in to change notification settings - Fork 21
/
head.html
59 lines (49 loc) · 2.7 KB
/
head.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<head>
<!-- Place these first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page title (mandatory) -->
<title></title>
<!-- These meta tags are recognised by Google -->
<meta name="description" content="Page description.">
<meta name="robots" content="robots.txt">
<!-- Site styles and authors -->
<link href="style.css" rel="stylesheet">
<link href="humans.txt" rel="author">
<!-- HTML5 shim for older version of IE -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Favicon -->
<!-- For IE 10 and below just place a file called favicon.ico in the root directory -->
<link href="/apple-touch-icon-57x57.png" rel="apple-touch-icon" sizes="57x57">
<link href="/apple-touch-icon-60x60.png" rel="apple-touch-icon" sizes="60x60">
<link href="/apple-touch-icon-72x72.png" rel="apple-touch-icon" sizes="72x72">
<link href="/apple-touch-icon-76x76.png" rel="apple-touch-icon" sizes="76x76">
<link href="/apple-touch-icon-114x114.png" rel="apple-touch-icon" sizes="114x114">
<link href="/apple-touch-icon-120x120.png" rel="apple-touch-icon" sizes="120x120">
<link href="/apple-touch-icon-144x144.png" rel="apple-touch-icon" sizes="144x144">
<link href="/apple-touch-icon-152x152.png" rel="apple-touch-icon" sizes="152x152">
<link href="/apple-touch-icon-180x180.png" rel="apple-touch-icon" sizes="180x180">
<link href="/favicon-16x16.png" rel="icon" type="image/png" sizes="16x16">
<link href="/favicon-32x32.png" rel="icon" type="image/png" sizes="32x32">
<link href="/favicon-48x48.png" rel="icon" type="image/png" sizes="48x48">
<link href="/favicon-64x64.png" rel="icon" type="image/png" sizes="64x64">
<link href="/favicon-96x96.png" rel="icon" type="image/png" sizes="96x96">
<link href="/android-chrome-192x192.png" rel="icon" type="image/png" sizes="192x192">
<link href="/safari-pinned-tab.svg" rel="mask-icon" color="#000000">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Open Graph protocol -->
<meta property="og:title" content="Content Title">
<meta property="og:type" content="website">
<meta property="og:image" content="https://example.com/image.jpg">
<meta property="og:url" content="https://example.com/page.html">
<meta property="og:description" content="Description">
<meta property="og:site_name" content="Site name">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="Author name">
<!-- Scripts should be loaded asynchronously or deferred -->
<script src="js/main.js" async></script>
</head>