-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (138 loc) · 5.62 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<meta http-equiv=x-ua-compatible content="IE=edge">
<meta name=viewport content="width=device-width,initial-scale=1">
<meta name=robots content="index, follow">
<title>Links | Ujwal Kandi</title>
<meta name=description content="Links for ujwalkandi.in">
<meta name=author content="Ujwal Kandi" />
<link rel=canonical href=https://ujwalkandi.in/links/>
<link rel=icon href=https://ujwalkandi.in/assets/img/favicon.ico>
<link rel=icon type=image/png sizes=16x16 href=https://ujwalkandi.in/assets/img/favicon-16x16.png>
<link rel=icon type=image/png sizes=32x32 href=https://ujwalkandi.in/assets/img/favicon-32x32.png>
<link rel=apple-touch-icon href=https://ujwalkandi.in/assets/img/apple-touch-icon.png>
<link rel=mask-icon href=https://ujwalkandi.in/assets/img/android-chrome-512x512.png>
<meta name=theme-color content="#2e2e33">
<meta name=msapplication-TileColor content="#2e2e33">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M6PE73SR22"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M6PE73SR22');
</script>
<script async src="https://cdn.panelbear.com/analytics.js?site=DIUUkn7HjPv"></script>
<script>
window.panelbear = window.panelbear || function() { (window.panelbear.q = window.panelbear.q || []).push(arguments); };
panelbear('config', { site: 'DIUUkn7HjPv' });
</script>
<style>
:root {
--theme: rgb(255, 255, 255);
--primary: rgb(30, 30, 30);
--tertiary: rgb(214, 214, 214);
--radius: 8px
}
@media(prefers-color-scheme: dark) {
:root {
--theme:rgb(10, 10, 10);
--primary: rgb(218, 218, 219);
--tertiary: rgb(65, 66, 68)
}
}
*,::after,::before {
box-sizing: border-box;
margin: 0;
padding: 0;
color: var(--primary);
text-decoration: none
}
body {
font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,open sans,helvetica neue,sans-serif;
line-height: 2;
word-break: break-word;
background: var(--theme);
text-align: center;
margin: 50px 0;
padding: 10px
}
.button {
background: var(--tertiary);
border-radius: var(--radius);
padding: 8px 80px;
display: block;
width: 100%
}
.links li {
padding: 10px 0
}
.links {
list-style: none;
flex-direction: column;
display: inline-block
}
</style>
</head>
<body>
<h1>Link Tree</h1>
<ul class=links>
<li>
<a class=button href=https://ujwalkandi.in rel=noopener noreferrer title=Website>
<h4>Website</h4>
</a>
</li>
<li>
<a class=button href=https://www.linkedin.com/in/ujwalkandi target=_blank rel=noopener noreferrer title=LinkedIn>
<h4>LinkedIn</h4>
</a>
</li>
<li>
<a class=button href=https://github.com/ujwalkandi target=_blank rel=noopener noreferrer title=Github>
<h4>Github</h4>
</a>
</li>
<li>
<a class=button href=https://medium.com/@ujwalkandi target=_blank rel=noopener noreferrer title=Medium>
<h4>Medium</h4>
</a>
</li>
<!--- <li>
<a class=button href=https://t.me/ujwal_kandi target=_blank rel=noopener noreferrer title="Telegram Channel">
<h4>Telegram Channel</h4>
</a> --->
</li>
<li>
<a class=button href=https://www.kaggle.com/ujwalkandi target=_blank rel=noopener noreferrer title=Kaggle>
<h4>Kaggle</h4>
</a>
</li>
<li>
<a class=button href=https://public.tableau.com/profile/ujwal.kandi target=_blank rel=noopener noreferrer title=Tableau>
<h4>Tableau</h4>
</a>
</li>
<li>
<a class=button href=https://www.hackerrank.com/ujwalkandi98 target=_blank rel=noopener noreferrer title=Hackerrank>
<h4>Hackerrank</h4>
</a>
</li>
<li>
<a class=button href=https://twitter.com/UjwalKandiii target=_blank rel=noopener noreferrer title=Twitter>
<h4>Twitter</h4>
</a>
</li>
<li>
<a class=button href=https://instagram.com/ujwal.kandi target=_blank rel=noopener noreferrer title=Instagram>
<h4>Instagram</h4>
</a>
</li>
<li>
<a class=button href=https://ujwalkandi.in/archive/ target=_blank rel=noopener noreferrer title=Portfolio>
<h4>Portfolio</h4>
</a>
</li>
</ul>
</body>
</html>