-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.98 KB
/
Copy pathindex.html
File metadata and controls
50 lines (46 loc) · 1.98 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
<!doctype html>
<!-- Single-page portfolio: #root is mounted by src/main.jsx. Meta tags below support SEO and social sharing. -->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<!-- Primary meta -->
<title>John Doe's Portfolio</title>
<meta
name="description"
content="John Doe's personal portfolio website showcasing his projects, skills, and experience in web development."
/>
<meta name="author" content="Arnob Mahmud, https://www.arnobmahmud.com, contact@arnobmahmud.com" />
<meta
name="keywords"
content="John Doe, portfolio, web developer, web designer, UI/UX designer, React, frontend, projects, skills, Arnob Mahmud"
/>
<link rel="canonical" href="https://portfolio-ui-11.vercel.app/" />
<!-- Icons -->
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/favicon.ico" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://portfolio-ui-11.vercel.app/" />
<meta property="og:title" content="John Doe's Portfolio" />
<meta
property="og:description"
content="John Doe's personal portfolio website showcasing his projects, skills, and experience in web development."
/>
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="John Doe's Portfolio" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="John Doe's Portfolio" />
<meta
name="twitter:description"
content="John Doe's personal portfolio website showcasing his projects, skills, and experience in web development."
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>