-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (62 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CP TRACKER</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="app.css">
<script src="jquery.js"></script>
</head>
<body>
<div class="se-pre-con"></div>
</div>
<div class="container">
<table class="table">
<thead>
<tr>
<th>Platforms</th>
<th>Ongoing</th>
<th>Future</th>
</tr>
</thead>
<tbody>
<tr >
<td>Codechef</td>
<td id="on"><a id="on-link">link</a></td>
<td> <span id="fu-time">DateTime</span> <a id="fu-link" >link</a></td>
</tr>
<tr >
<td>Codeforces</td>
<td id="codeforces-on"><a id="codeforces-on-link">link</a></td>
<td> <span id="codeforces-fu-time">DateTime</span> <a id="codeforces-fu-link" >link</a></td>
</tr>
<!-- <tr >
<td>Leetcode</td>
<td id="leetcode-on"><a id="leetcode-on-link">link</a></td>
<td> <span id="leetcode-fu-time">DateTime</span> <a id="leetcode-fu-link" >link</a></td>
</tr> -->
<tr >
<td>SPOJ</td>
<td id="spoj-on"><a id="spoj-on-link">link</a></td>
<td> <span id="spoj-fu-time">DateTime</span> <a id="spoj-fu-link" >link</a></td>
</tr>
<tr >
<td>Atcoder</td>
<td id="atcoder-on"><a id="atcoder-on-link">link</a></td>
<td> <span id="atcoder-fu-time">DateTime</span> <a id="atcoder-fu-link" >link</a></td>
</tr>
<tr >
<td>Topcoder</td>
<td id="topcoder-on"><a id="topcoder-on-link">link</a></td>
<td> <span id="topcoder-fu-time">DateTime</span> <a id="topcoder-fu-link" >link</a></td>
</tr>
</tbody>
</table>
<span id="foot">
Made with ❤️ by <a href="https://github.com/mohitthakur007" target="_blank">Mohit</a>
</span>
</div>
</body>
<script type="text/javascript" src="app.js"></script>
</html>