-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfull-startup.html
More file actions
79 lines (61 loc) · 2.56 KB
/
full-startup.html
File metadata and controls
79 lines (61 loc) · 2.56 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Document Related -->
<meta charset="utf-8" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Seo Related -->
<title>Html Startup - Basic Mode</title>
<meta name="description" content="The HTML5 Herald">
<meta name="keywords" content="keyword 1, keyword 2, keyword 3">
<meta name="robots" content="noindex" />
<!-- Hreflang -->
<link rel="alternate" href="https://example.com/" hreflang="x-default" />
<link rel="alternate" href="https://example.com/pt" hreflang="pt" />
<!-- Copy Rights -->
<meta name="author" content="Business Name">
<meta name="dcterms.rights" content="© Business Name. All rights reserved">
<meta name="dcterms.dateCopyrighted" content="2014 - 2018">
<!-- Geolocation -->
<meta name="geo.placename" content="Location" />
<meta name="geo.region" content="PT-08" />
<meta name="geo.position" content="37.111344;-8.460311" />
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:site" content="@publisher_handle">
<!-- Open Graph data - Facebook, Google+ and Pinterest -->
<meta property="og:type" content="article" />
<meta property="og:title" content="Title Here" />
<meta property="og:description" content="Description Here" />
<meta property="og:url" content="http://www.example.com/" />
<!-- Website Styles (CSS) -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Humans -->
<link type="text/plain" rel="author" href="humans.txt" />
<!-- Favicon -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-xxxxxxxx-x"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-xxxxxxxx-x');
</script>
</head>
<body>
<!-- HTML Markuo -->
<p>Hello HTML5 World.</p>
<!-- Website Libraries -->
<!-- Your code & plugins initialization goes here -->
<script src="js/main.js"></script>
</body>
</html>