-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.57 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Meta descriptions can be any length, but Google generally truncates snippets to ~155-160 characters. We recommend descriptions between 50 and 160 characters."
/>
<meta name="keywords" content="Comma, seperated, keywords" />
<meta name="author" content="Author name" />
<meta
property="og:title"
content="Title showed on socials (max. 200 chars)"
/>
<meta property="og:site_name" content="Site name" />
<meta property="og:url" content="https://example.com/" />
<meta
property="og:description"
content="Description showed on socials (max. 200 chars) "
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://example.com/src/img/images.jpg"
/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@twitterHandle" />
<meta name="twitter:description" content="Twitter description" />
<meta name="twitter:title" content="Title - Shown on twitter" />
<meta
name="twitter:image"
content="https://example.com/src/img/image.jpg"
/>
<link rel="stylesheet" href="/public/css/bundle.min.css" />
<link rel="canonical" href="https://example.com/" />
<title>HTML Template — Customize the title</title>
</head>
<body>
<h1>HTML Template</h1>
<!-- Insert HTML here -->
<script defer src="/public/js/bundle.min.js"></script>
</body>
</html>