-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (54 loc) · 2.48 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
<!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.0" />
<title>C Programs</title>
<link rel="stylesheet" href="./lib/prism.css" />
<link rel="stylesheet" href="./style.css" />
</head>
<body data-prism-copy-timeout="500" class="line-numbers">
<header class="header">
<h1>Data Structures in C</h1>
</header>
<div class="card">
<h1>Viewer Count :</h1>
<div class="counter" id="counter">💀</div>
</div>
<div id="milestone"></div>
<h1 class="titles">Note :</h1>
<ul>
<li>The following are the list of programs in Data Structures lab</li>
<li>Click the links below to get the code of programs you need</li>
<li>The Copy button is available inside code box</li>
</ul>
<h1 class="titles">Programs :</h1>
<ol id="prog-links"></ol>
<button class="top-of-site-link" id="scroll-top" onclick="scrollToTop()">
<span class="screen-reader-text">Back to Top</span>
<svg width="32" height="32" viewBox="0 0 100 100">
<path
fill="white"
d="m50 0c-13.262 0-25.98 5.2695-35.355 14.645s-14.645 22.094-14.645 35.355 5.2695 25.98 14.645 35.355 22.094 14.645 35.355 14.645 25.98-5.2695 35.355-14.645 14.645-22.094 14.645-35.355-5.2695-25.98-14.645-35.355-22.094-14.645-35.355-14.645zm20.832 62.5-20.832-22.457-20.625 22.457c-1.207 0.74219-2.7656 0.57812-3.7891-0.39844-1.0273-0.98047-1.2695-2.5273-0.58594-3.7695l22.918-25c0.60156-0.61328 1.4297-0.96094 2.2891-0.96094 0.86328 0 1.6914 0.34766 2.293 0.96094l22.918 25c0.88672 1.2891 0.6875 3.0352-0.47266 4.0898-1.1562 1.0508-2.9141 1.0859-4.1133 0.078125z"
/>
</svg>
</button>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
<script>
const firebaseConfig = {
apiKey: "AIzaSyCgyx_LdGqhGVFEm8biPbV3urP3DV5Fx3E",
authDomain: "ece-clabs.firebaseapp.com",
projectId: "ece-clabs",
storageBucket: "ece-clabs.appspot.com",
messagingSenderId: "505057671296",
appId: "1:505057671296:web:c2a6faf5b53e4e3ee38e65",
measurementId: "G-QC9DS11M50",
};
firebase.initializeApp(firebaseConfig);
</script>
<script src="./lib/prism.js"></script>
<script src="./index.js"></script>
</body>
</html>