-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.7 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
49
50
51
52
53
<!DOCTYPE html>
<html lang="de" class="overflow-x-hidden">
<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" />
<title>SACHSENSPIELT</title>
<link rel="icon" href="favicon.ico" />
<!--- Tailwind Import -->
<link rel="stylesheet" href="tailwind.css" />
<!--- === META === -->
<meta name="description" content="This is my little profile page." />
<meta name="og:description" content="This is my little profile page." />
<meta
name="twitter:description"
content="This is my little profile page."
/>
<meta name="keywords" content="Sachsenspielt" />
<meta name="author" content="Sachsenspielt" />
<!-- title -->
<meta property="og:title" content="Sachsenspielt - Just Coding." />
<meta name="twitter:title" content="Sachsenspielt - Just Coding." />
<!-- url -->
<link rel="canonical" href="https://www.sachsenspielt.de/" />
<meta property="og:url" content="https://www.sachsenspielt.de/" />
<meta name="twitter:url" content="https://www.sachsenspielt.de/" />
<!-- image -->
<meta
property="image"
content="https://www.sachsenspielt.de/img/logo.jpg"
/>
<meta
property="og:image"
content="https://www.sachsenspielt.de/img/logo.jpg"
/>
<meta
name="twitter:image"
content="https://www.sachsenspielt.de/img/logo.jpg"
/>
</head>
<body class="bg-black">
<div class="w-full h-screen flex items-center justify-center">
<img src="img/logo.jpg" class="rounded-full w-full max-w-lg" />
</div>
</body>
</html>