-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.6 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile Generator</title>
<meta name="description" content="Generate your GitHub profile easily and quickly.">
<meta name="keywords" content="GitHub, profile, generator, developer, tool">
<meta name="author" content="Samuel Othieno">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Profile Generator">
<meta property="og:description" content="Generate your GitHub profile easily and quickly.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://yourwebsite.com">
<meta property="og:image" content="https://yourwebsite.com/og-image.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Profile Generator">
<meta name="twitter:description" content="Generate your GitHub profile easily and quickly.">
<meta name="twitter:image" content="https://yourwebsite.com/twitter-image.jpg">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#root {
width: 100%;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #fff;
border-radius: 8px;
}
</style>
</head>
<body>
<div id="root" role="main"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>