-
Notifications
You must be signed in to change notification settings - Fork 169
/
index.html
61 lines (52 loc) · 1.66 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
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-157837769-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-157837769-1');
</script>
<title>
InterQues | Coding Ninjas
</title>
<link rel="shortcut icon" type="image/png" href="./assets/favicon.png"/>
<meta name="description" content="A place to compile all the interview questions, while learning github alongside!">
</head>
<body>
<div>
<img src="./assets/CN_logo.png" height='72px' alt="Coding Ninjas Logo">
</div>
<div>
<h1>
InterQues
</h1>
<!-- <p>
TODO: Description
</p> -->
</div>
<div>
<ul>
<li>
<a href="./html/index.html">HTML</a>
</li>
<li>
<a href="./css/index.html">CSS</a>
</li>
<li>
<a href="./javascript/index.html">JavaScript</a>
</li>
<li>
<a href="./ds-and-algo/index.html">Data Structures and Algorithms</a>
</li>
</ul>
</div>
<div>
<h4>
List of contributors:
</h4>
<script src="./assets/js/contributors_script.js"></script>
</div>
</body>
</html>