-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
288 lines (262 loc) · 10.4 KB
/
Copy pathindex.html
File metadata and controls
288 lines (262 loc) · 10.4 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Archive</title>
<link rel="icon" href="https://www.shubhamiitbhu.in/_next/image?url=%2Fshubham.jpg&w=640&q=75">
<style>
/* Container for the navigation links */
.quiz-container {
/* Removed overflow: auto; */
}
/* Style for the icon link */
.quiz-link {
float: right;
position: relative;
display: inline-block;
margin-left: 10px; /* Adjusts spacing between link and icon */
}
/* Tooltip styling */
.quiz-link .tooltip-text {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%; /* Position the tooltip above the icon */
left: 50%;
margin-left: -60px; /* Use negative margin to align tooltip */
opacity: 0;
transition: opacity 0.3s;
}
/* Tooltip arrow */
.quiz-link .tooltip-text::after {
content: "";
position: absolute;
top: 100%; /* Arrow below the tooltip */
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* Show the tooltip on hover */
.quiz-link:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
body,
ul {
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 20px;
}
div {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
a {
text-decoration: none;
color: #007bff;
}
a:hover {
text-decoration: underline;
color: #0056b3;
}
</style>
</head>
<body>
<br>
<div>
<a href="/DSA/README.html">DSA</a>
<a href="https://www.shubhamiitbhu.in/progress" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Practice DSA Questions</span>
</a>
</div>
<br>
<div>
<ul>
<a href="/System_Design/index.html"> System Design </a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_System_Design" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Take Quiz</span>
</a>
</ul>
</div>
<br>
<div>
<a href="/Computer_Networks/index.html"> Computer Networks</a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_CN" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Take Quiz</span>
</a>
</div>
<br>
<div>
<a href="/DBMS/1.html"> DataBase Management System</a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_DBMS" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Take Quiz</span>
</a>
</div>
</div>
<br>
<div>
<a href="/Backend/Node_js.html"> Backend</a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_CN" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Take Quiz</span>
</a>
</div>
<br>
<div>
<a href="/Projects">Scalable Projects Using System Design Applications</a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_CN" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Take Quiz</span>
</a>
</div>
<br>
<div>
<a href="/Data Science/">Data Science and Machine Learning</a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_CN" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24">
<rect fill="none" height="24" width="24"/>
<path d="M12,2C6.48,2,2,6.48,2,12c0,4.42,3.22,8.14,7.45,8.84c0.55,0.1,0.75-0.75,0.29-0.97c-2.33-0.94-4.19-2.8-5.13-5.13
c-0.22-0.46-1.07-0.26-0.97,0.29C4.86,18.78,8.78,22,12,22c5.52,0,10-4.48,10-10C22,6.48,17.52,2,12,2z M13,18h-2v-2h2V18z
M13,14h-2v-4h2V14z"/>
</svg>
<span class="tooltip-text">Take Quiz</span>
</a>
</div>
<br>
<div>
<a href="/Operating_System/">Operating System</a>
<a href="https://quiz.shubhamiitbhu.in/quiz/CSE_OS/" style="float: right;" target="_blank" class="quiz-link">
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24"
width="24">
<g>
<path d="M0,0h24v24H0V0z" fill="none" />
</g>
<g>
<g>
<path d="M4,6H2v14c0,1.1,0.9,2,2,2h14v-2H4V6z" />
<path
d="M20,2H8C6.9,2,6,2.9,6,4v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C22,2.9,21.1,2,20,2z M14.01,15 c-0.59,0-1.05-0.47-1.05-1.05c0-0.59,0.47-1.04,1.05-1.04c0.59,0,1.04,0.45,1.04,1.04C15.04,14.53,14.6,15,14.01,15z M16.51,8.83 c-0.63,0.93-1.23,1.21-1.56,1.81c-0.13,0.24-0.18,0.4-0.18,1.18h-1.52c0-0.41-0.06-1.08,0.26-1.65c0.41-0.73,1.18-1.16,1.63-1.8 c0.48-0.68,0.21-1.94-1.14-1.94c-0.88,0-1.32,0.67-1.5,1.23l-1.37-0.57C11.51,5.96,12.52,5,13.99,5c1.23,0,2.08,0.56,2.51,1.26 C16.87,6.87,17.08,7.99,16.51,8.83z" />
</g>
</g>
</svg>
</a>
<span class="tooltip-text" style="float: right;">Take Quiz</span>
</div>
<br>
<div>
<!-- Scalable Chat App Link -->
<a href="/Projects/Scalable_Chat_App.html">Scalable Chat App</a>
</div>
<br>
<div>
<a href="/DNS/DNS.html" >DNS</a>
</div>
<br>
<div>
<a href="Rust//README.html" >Rust</a>
</a>
</div>
<br>
<div>
<a href="DevOps/commands/" >Important Commands</a>
</a>
</div>
<br>
<div>
<a href="DevOps/" >DevOps</a>
</a>
</div>
<br>
<div>
<a href="interview-questions/" >HR Round Interview Questons</a>
</a>
</div>
<br>
<div>
<a href="Python/" >Python</a>
</a>
</div>
<br>
<div>
<a href="LeetCode/" >LeetCode</a>
</a>
</div>
<br>
<div>
<a href="RTMP_Server/" >Building Own RTMP Server</a>
</a>
</div>
<br/>
<div>
<a href="./GateVideoDownloader/" >Download Gate Lectures From Mining Gyan</a>
</a>
</div>
<br/>
<div>
<a href="./SYQ/" >SYQs</a>
</a>
</div>
<br/>
<div>
<a href="./Java/oops.html" >Java OOPS</a>
</a>
</div>
<script src="./script.js"></script>
</body>
</html>