-
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.54 KB
/
index.html
File metadata and controls
61 lines (52 loc) · 2.54 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>
<script>
const storedTheme = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-theme', storedTheme);
</script>
<meta charset="UTF-8" />
<meta name="google-site-verification" content="mahIsZ464GV0kZKIbjK4thqbQEu49WZTOQwc_xwc4K8" />
<link rel="icon" href="https://fonts.gstatic.com/s/i/materialicons/code/v1/24px.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"
rel="stylesheet">
<meta name="description"
content="CodeSphere - AliHamza projects, thealihamza04 projects, programming language timeline and framework guides." />
<meta name="keywords"
content="AliHamza projects, thealihamza04 projects, programming language timeline, projramming lang time line" />
<link rel="canonical" href="https://codes-sphere.vercel.app/" />
<meta property="og:title" content="CodeSphere" />
<meta property="og:description"
content="Guides for programming languages, frameworks, developer skills and AliHamza projects." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://codes-sphere.vercel.app/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="CodeSphere" />
<meta name="twitter:description"
content="Guides for programming languages, frameworks, developer skills and AliHamza projects." />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "CodeSphere",
"url": "https://codes-sphere.vercel.app/"
}
</script>
<title>CodeSphere</title>
</head>
<body class="bg-base-100 text-base-content">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>