-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
62 lines (48 loc) · 2.8 KB
/
index.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
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<!-- For more info on what each tag does, visit: https://github.com/JonKaric/head -->
<!-- These three must go first -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Document title goes here </title>
<meta name="description" content="">
<!-- Do not show this page or Cached link search results and don't follow the links on this page -->
<!-- Remove if you want your site to be indexed by search engines-->
<meta name="robots" content="noindex, nofollow">
<!-- Facebook / OpenGraph -->
<meta property="og:url" content="http://www.example.com" />
<meta property="og:title" content="Website page title" />
<meta property="og:description" content="A brief description of the content" />
<meta property="og:site_name" content="Example" />
<meta property="og:image" content="http://www.example.com/image.jpg" />
<meta property="fb:app_id" content="000000" /> <!-- Used for Domain Insights -->
<meta property="og:type" content="website" /> <!-- website is deafult -->
<meta property="og:locale" content="en_US" /> <!-- en_US is deafult -->
<!-- Twitter Cards-->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@your_sites_username">
<!-- You don't need to include these if you have OpenGraph tags -->
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:image" content="http://www.example.com/image.jpg">
<style>
/* Put critical CSS here */
</style>
<!-- Favicons:
STRONGLY RECOMMENDED: If you want FULL support, generate your icons using https://realfavicongenerator.net/ instead -->
<!-- For IE 10 and below: No link, just place a file called favicon.ico in the root directory -->
<!-- For IE 11, Chrome, Firefox, Safari, Opera -->
<link rel="icon" href="path/to/favicon-16.png" sizes="16x16" type="image/png">
<link rel="icon" href="path/to/favicon-32.png" sizes="32x32" type="image/png">
<link rel="icon" href="path/to/favicon-48.png" sizes="48x48" type="image/png">
<link rel="icon" href="path/to/favicon-62.png" sizes="62x62" type="image/png">
<!-- The code below makes sure IE 6-8 supports HTML5 elements -->
<!--[if lt IE 9]>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
</body>
</html>