-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (81 loc) · 2.97 KB
/
index.html
File metadata and controls
88 lines (81 loc) · 2.97 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Ilham Ramadhan | Web Developer & Portfolio</title>
<meta name="title" content="Ilham Ramadhan | Web Developer & Portfolio" />
<meta
name="description"
content="Ilham Ramadhan's personal portfolio — showcasing projects, skills, certifications, and blog posts on web development, design, and technology."
/>
<meta name="author" content="Ilham Ramadhan" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://ilramdhan.dev/" />
<!-- Theme Color -->
<meta name="theme-color" content="#4f46e5" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ilramdhan.dev/" />
<meta
property="og:title"
content="Ilham Ramadhan | Web Developer & Portfolio"
/>
<meta
property="og:description"
content="Showcasing projects, skills, certifications, and blog posts on web development, design, and technology."
/>
<meta property="og:image" content="https://ilramdhan.dev/logo.png" />
<meta property="og:site_name" content="Ilham Ramadhan" />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://ilramdhan.dev/" />
<meta
name="twitter:title"
content="Ilham Ramadhan | Web Developer & Portfolio"
/>
<meta
name="twitter:description"
content="Showcasing projects, skills, certifications, and blog posts on web development, design, and technology."
/>
<meta name="twitter:image" content="https://ilramdhan.dev/logo.png" />
<!-- Preconnect Hints -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Favicons -->
<link
rel="icon"
type="image/png"
href="/logo/ir-light.png"
media="(prefers-color-scheme: light)"
/>
<link
rel="icon"
type="image/png"
href="/logo/ir-dark.png"
media="(prefers-color-scheme: dark)"
/>
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Ilham Ramadhan",
"url": "https://ilramdhan.dev",
"jobTitle": "Web Developer",
"sameAs": [
"https://github.com/ilramadhan",
"https://linkedin.com/in/ilramadhan"
],
"image": "https://ilramdhan.dev/logo.png",
"description": "Web developer specializing in modern web technologies. Portfolio showcasing projects, skills, and blog posts."
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>