-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (54 loc) · 1.74 KB
/
index.html
File metadata and controls
66 lines (54 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<title>Arshit Portfolio</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="/logo.png" />
<!-- SEO -->
<meta
name="description"
content="Portfolio website of Arshit Dhiman — Frontend Developer specializing in React, Vite, UI/UX, animations and modern web applications."
/>
<meta name="theme-color" content="#0f172a" />
<!-- Keep your original fonts exactly, no flashing or change -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- BEST FONT COMBO: Poppins (UI text) + Outfit (Headings) -->
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@200..900&family=Poppins:wght@200;300;400;500;600;700;800;900&display=block"
rel="stylesheet"
/>
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
referrerpolicy="no-referrer"
/>
<!-- Optional base styles to apply fonts -->
<style>
:root {
--font-heading: "Outfit", system-ui, sans-serif;
--font-body: "Poppins", system-ui, sans-serif;
}
body {
margin: 0;
font-family: var(--font-body);
background: #020617;
color: white;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
}
</style>
</head>
<body>
<div id="root"></div>
<!-- React/Vite entry -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>