-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.46 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Nikolai Tyranov's portfolio. Learn more about skills, experience, and completed projects in web development and web design."
/>
<meta
name="keywords"
content="Nikolai Tyranov, web development, web design, projects, portfolio, frontend, javascript, react, website development"
/>
<meta name="author" content="Nikolai Tyranov" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="preload"
href="./fonts/Humane-Bold.otf"
as="font"
type="font/otf"
crossorigin="anonymous"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<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=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<title>Nikolai Tyranov - Frontend Developer</title>
</head>
<body>
<canvas id="background-canvas"></canvas>
<div id="root"></div>
<script type="module" src="/src/scripts/script.js" async></script>
<script type="module" src="/src/main.tsx" async></script>
</body>
</html>