-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy-html-template.html
102 lines (91 loc) · 3.41 KB
/
my-html-template.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
<!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" />
<!--* The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--* Title -->
<title></title>
<!-- * SEO Meta Tags -->
<!-- Primary Meta Tags -->
<meta name="title" content="50 to 60 characters" />
<meta name="description" content="105 to 150 characters" />
<!-- Open Graph / Facebook Meta Tags -->
<meta property="og:type" content="website" />
<meta property="og:url" content="url goes here" />
<meta property="og:title" content="50 to 60 characters" />
<meta property="og:description" content="105 to 150 characters" />
<meta property="og:image" content="1200px to 627px less than 5mb" />
<!-- Twitter Meta Tags -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="url goes here" />
<meta property="twitter:title" content="50 to 60 characters" />
<meta property="twitter:description" content="105 to 150 characters" />
<meta property="twitter:image" content="1200px to 627px less than 5mb" />
<!--* Fonts -->
<!-- Google fonts offline -->
<link rel="preload" href="" as="fonts" />
<!-- Google fonts online -->
<link rel="preconnect" href="" />
<!--* Icons -->
<!-- FontAwesome offline -->
<link rel="stylesheet" href="fontawesome5.15/css/all.css" />
<!-- FontAwesome online -->
<script
src="https://kit.fontawesome.com/xxxxxxxxx.js"
crossorigin="anonymous"
></script>
<!--* CSS -->
<!--* CSS (resets) -->
<!-- Normalize.css -->
<!-- This comes first -->
<link rel="stylesheet" type="text/css" href="css/css-resets/normalise.css" />
<!-- My CSS reset -->
<!-- This comes second -->
<link rel="stylesheet" type="text/css" href="css/css-resets/my-css-reset.css" />
<!-- My Font reset -->
<!-- This comes third -->
<link rel="stylesheet" type="text/css" href="css/css-resets/my-font-reset.css" />
<!--* CSS (Bootstrap) -->
<!-- Bootstrap CSS offline -->
<link
rel="stylesheet"
type="text/css"
href="bootstrap5.1.3/css/bootstrap.min.css"
/>
<!-- Bootstrap CSS online -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<!--* CSS (My codes) -->
<!-- My CSS Variables -->
<!-- This comes first -->
<link rel="stylesheet" type="text/css" href="css/my-css-variables.css" />
<!-- main CSS styles -->
<!-- This comes second -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<!--* container/body wrapper for every content in the body -->
<div class="flex">
</div>
<!--* JavaScripts -->
<!--* Bootstrap Javascript -->
<!-- Bootstrap: Offline Javascript and Popper -->
<script src="bootstrap5.1\js\bootstrap.min.js"></script>
<!-- Bootstrap: Online JavaScript and Popper -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!--* My Javascript codes -->
<!-- Main Javascript code -->
<script src="js/script.js"></script>
</body>
</html>