-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (52 loc) · 2.48 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 2.48 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
<!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" />
<!-- Primary meta tags -->
<title>Your Site Title</title>
<meta name="description" content="A short, meaningful description of the site." />
<meta name="keywords" content="keyword1, keyword2, keyword3" />
<meta name="author" content="Your Name or Organization" />
<!-- Canonical URL -->
<link rel="canonical" href="https://example.com/" />
<!-- Favicons (place real files in /assets/icons/) -->
<link rel="icon" href="/assets/icons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Your Site Title" />
<meta property="og:description" content="A short, meaningful description of the site." />
<meta property="og:url" content="https://example.com/" />
<meta property="og:image" content="https://example.com/assets/og-image.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@yourhandle" />
<meta name="twitter:title" content="Your Site Title" />
<meta name="twitter:description" content="A short, meaningful description of the site." />
<meta name="twitter:image" content="https://example.com/assets/og-image.png" />
<!-- Preconnects / DNS prefetch -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" rel="stylesheet"/>
<style>
html, body, * {
font-family: 'Exo 2', sans-serif;
box-sizing: border-box;
}
</style>
<!-- Optional: Modernizr or other head scripts if needed -->
<!-- <script src="/assets/js/modernizr.js" defer></script> -->
<!-- Theme color for mobile browsers -->
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>