-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (40 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Méta-données du site Internet -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
<meta name="theme-color" content="#171717" />
<meta name="description" content="🏠 A terminal-style home page to browse my personal projects." />
<meta name="keywords" content="docker,npm,typescript,pwa,eslint,a11y,homepage,svelte,husky,vite,terminal-style" />
<!-- Titre du site Internet -->
<title>Florian Trayon - Homepage</title>
<!-- Informations sur l'auteur -->
<link rel="author" href="https://github.com/FlorianLeChat" />
<meta name="author" content="Florian Trayon" />
<!-- Manifeste de l'application -->
<link rel="manifest" href="manifest.webmanifest" crossorigin="use-credentials" />
<!-- Informations Open Graph -->
<meta property="og:title" content="Florian Trayon - Homepage" />
<meta property="og:description" content="🏠 A terminal-style home page to browse my personal projects." />
<meta property="og:url" content="https://florianlechat.github.io/Homepage/" />
<meta property="og:image" content="https://opengraph.githubassets.com/0b0139ed7d8e5ad93683a175aeb0e4e40e5d7baa/FlorianLeChat/Homepage" />
<meta property="og:type" content="website" />
<!-- Informations Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@FlorianTrayon" />
<meta name="twitter:title" content="Florian Trayon - Homepage" />
<meta name="twitter:description" content="🏠 A terminal-style home page to browse my personal projects." />
<meta name="twitter:image" content="https://opengraph.githubassets.com/0b0139ed7d8e5ad93683a175aeb0e4e40e5d7baa/FlorianLeChat/Homepage" />
<!-- Icônes du site Internet -->
<link rel="icon" href="assets/favicons/16x16.webp" type="image/webp" sizes="16x16" />
<link rel="icon" href="assets/favicons/32x32.webp" type="image/webp" sizes="32x32" />
<link rel="icon" href="assets/favicons/48x48.webp" type="image/webp" sizes="48x48" />
<link rel="icon" href="assets/favicons/192x192.webp" type="image/webp" sizes="192x192" />
<link rel="icon" href="assets/favicons/512x512.webp" type="image/webp" sizes="512x512" />
<link rel="apple-touch-icon" href="assets/favicons/180x180.webp" type="image/webp" sizes="180x180" />
</head>
<body>
<script type="module" src="src/main.ts"></script>
</body>
</html>