-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
127 lines (115 loc) · 4.09 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="theme-color" content="#ffffff" />
<!-- Primary Meta Tags -->
<title>Alan Dsilva Portfolio</title>
<meta name="title" content="Alan Dsilva's Portfolio website" />
<meta
name="description"
content="My Personal Website. This website includes all my work info, open source projects I have worked on etc. This website is built in React.js"
/>
<meta name="keywords" content="alandsilva, alan, dsilva, alan dsilva" />
<meta
name="author"
content="Alan Dsilva <[email protected]>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/src/styles/main.scss" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script
language="Javascript"
type="text/javascript"
src="./js/smooth-scroll.js"
></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" />
<meta
name="google-site-verification"
content="r7sRuWJ2LA3j2YhZygYkrUlj6wktdyU1NtPWv5DrMYo"
/>
<!-- Primary Meta Tags -->
<title>Alan Dsilva Portfolio</title>
<meta name="title" content="Alan Dsilva's Portfolio website" />
<meta
name="description"
content="My Personal Website. This website includes all my work info, open source projects I have worked on etc. This website is built in React.js"
/>
<meta name="keywords" content="alandsilva, alan, dsilva, alan dsilva" />
<meta
name="author"
content="Alan Dsilva <[email protected]>"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://alandsilva.netlify.app/" />
<meta property="og:title" content="Alan Dsilva's Portfolio website" />
<meta
property="og:description"
content="My Personal Website. This website includes all my work info, open source projects I have worked on etc. This website is built in React.js"
/>
<!-- <meta property="og:image" content="./avatar.jpg" /> -->
<meta property="og:image" content="./social-preview-1200x627.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://alandsilva.netlify.app/" />
<meta property="twitter:title" content="Alan Dsilva's Portfolio website" />
<meta
property="twitter:description"
content="My personal website. Showcases my work, open source projects, etc."
/>
<!-- <meta property="twitter:image" content="./avatar.jpg" /> -->
<meta property="twitter:image" content="./social-preview-1200x627.png" />
<!-- <meta
property="twitter:image"
content="https://upload.wikimedia.org/wikipedia/commons/7/7c/Aspect_ratio_16_9_example.jpg"
/> -->
<link rel="favicon" href="favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/manifest.json" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<style>
* {
margin: 0;
padding: 0;
}
.noscript {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
font-family: sans-serif;
font-weight: bold;
font-size: 1em;
}
</style>
<body>
<noscript class="noscript">
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<script
language="Javascript"
type="text/javascript"
src="./js/smooth-scroll.js"
></script>
</body>
</html>