forked from harryheman/modern-html-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
196 lines (172 loc) · 5.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html
lang="en"
dir="ltr"
itemscope
itemtype="https://schema.org/WebPage"
prefix="og: http://ogp.me/ns#"
>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HTML Template</title>
<meta name="referrer" content="origin" />
<link rel="canonical" href="https://htmltemplate.site/" />
<link rel="icon" type="image/png" href="./icons/64x64.png" />
<link rel="manifest" href="./manifest.json" />
<!-- Security -->
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta http-equiv="X-XSS-Protection" content="1; mode=block" />
<meta name="author" content="Igor Agapov" />
<meta name="description" content="Modern HTML Starter Template" />
<meta
name="keywords"
content="modern, useful, html, html5, css, css3, javascript, js, template, boilerplate"
/>
<meta itemprop="name" content="HTML Template" />
<meta itemprop="description" content="Modern HTML Starter Template" />
<meta itemprop="image" content="./icons/128x128.png" />
<!-- Microsoft -->
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="application-name" content="HTML Template" />
<meta name="msapplication-tooltip" content="Modern HTML Starter Template" />
<meta name="msapplication-starturl" content="/" />
<meta name="msapplication-config" content="browserconfig.xml" />
<!-- Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://htmltemplate.site/" />
<meta property="og:title" content="HTML Template" />
<meta property="og:image" content="./icons/256x256.png" />
<meta property="og:site_name" content="HTML Template" />
<meta property="og:description" content="Modern HTML Starter Template" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta name="twitter:title" content="HTML Template" />
<meta name="twitter:description" content="Modern HTML Starter Template" />
<meta name="twitter:url" content="https://htmltemplate.site/" />
<meta name="twitter:image" content="./icons/128x128.png" />
<!-- IOS -->
<meta name="apple-mobile-web-app-title" content="HTML Template" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#222" />
<link rel="apple-touch-icon" href="./icons/256x256.png" />
<!-- Android -->
<meta name="theme-color" content="#eee" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- Google Verification Tag -->
<meta
name="google-site-verification"
content="O-W6Fmw34nQnmRo23kk496ys78YjLQVNC0bHqRUtI5A"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-R2QPPP7JDN"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-R2QPPP7JDN')
</script>
<!-- Yandex Verification Tag -->
<meta name="yandex-verification" content="a44b24842a157e95" />
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
;(function (m, e, t, r, i, k, a) {
m[i] =
m[i] ||
function () {
;(m[i].a = m[i].a || []).push(arguments)
}
m[i].l = 1 * new Date()
;(k = e.createElement(t)),
(a = e.getElementsByTagName(t)[0]),
(k.async = 1),
(k.src = r),
a.parentNode.insertBefore(k, a)
})(
window,
document,
'script',
'https://mc.yandex.ru/metrika/tag.js',
'ym'
)
ym(69418261, 'init', {
clickmap: true,
trackLinks: true,
accurateTrackBounce: true,
})
</script>
<noscript
><div>
<img
src="https://mc.yandex.ru/watch/69418261"
style="position: absolute; left: -9999px"
alt=""
/></div
></noscript>
<!-- Mail Verification Tag -->
<meta
name="wmail-verification"
content="af1058072b1dccd45b9bbfcf5c47d2ef"
/>
<!-- JSON-LD -->
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "WebPage",
"name": "HTML Template",
"image": ["https://htmltemplate.site/icons/512x512.png"],
"author": {
"@type": "Person",
"name": "Igor Agapov"
},
"datePublished": "2020-11-15",
"description": "Modern HTML Starter Template",
"keywords": "modern, useful, html, html5, css, css3, javascript, js, template, boilerplate"
}
</script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<style>
/* Critical CSS */
</style>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<!-- HTML5 -->
<header>
<h1>
Modern HTML <br />
Starter Template
</h1>
<nav>
<a href="./HTML-Template.zip" download>Download</a>
<a
href="https://github.com/harryheman/Modern-HTML-Starter-Template"
target="_blank"
rel="noopener"
>GitHub</a
>
</nav>
<time></time>
</header>
<main></main>
<footer>
<p>
© 2020.
<a href="https://github.com/harryheman" target="_blank" rel="noopener"
>Igor Agapov</a
>
</p>
</footer>
<script src="./script.js" type="module"></script>
</body>
</html>