-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (99 loc) · 2.82 KB
/
index.html
File metadata and controls
112 lines (99 loc) · 2.82 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C++ Course</title>
<style>
* {
font-size: 25px;
}
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
}
th,
td {
padding: 5px;
text-align: center;
}
#heading {
width: 30rem;
}
table {
width: 20rem;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-16947566-3']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' :
'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<center>
<table id="heading">
<tr>
<td colspan="2">
<center><b>THE SKILL CRAFT C++ COURSE</b>
<br /><br />
<a href = "https://the-skill-craft.github.io/cpp_course/page">Beautified Version</a><br><br>
</center>
</td>
</tr>
<tr>
<td colspan="2">
<center><b>Description: </b><br><br />Basic level problems
<br />
</center>
</td>
</tr>
</table><br />
<table>
<tr>
<th>ID</th>
<th>Problem Name</th>
</tr>
<tr> <td>1</td>
<td><a href="https://www.codechef.com/problems/HS08TEST" target="_blank">Basic</a></td>
</tr><td>1</td>
<td><a href="https://www.codechef.com/problems/START01" target="_blank">Basic</a></td>
</tr><td>1</td>
<td><a href="https://codeforces.com/problemset/problem/4/A" target="_blank">Basic</a></td>
</tr><td>1</td>
<td><a href="https://codeforces.com/problemset/problem/71/A" target="_blank">Basic</a></td>
</tr><td>1</td>
<td><a href="https://codeforces.com/problemset/problem/282/A" target="_blank">Basic</a></td>
</tr><br> <br><br></table> <table>
<tr>
<th>ID</th>
<th>Problem Name</th>
</tr>
<tr> <td>2</td>
<td><a href="https://www.codechef.com/problems/INTEST" target="_blank">Loops</a></td>
</tr><td>2</td>
<td><a href="https://www.codechef.com/problems/FLOW001" target="_blank">Loops</a></td>
</tr><td>2</td>
<td><a href="https://www.codechef.com/problems/FLOW006" target="_blank">Loops</a></td>
</tr><td>2</td>
<td><a href="https://www.codechef.com/problems/FLOW002" target="_blank">Loops</a></td>
</tr><td>2</td>
<td><a href="https://www.codechef.com/problems/FLOW004" target="_blank">Loops</a></td>
</tr><td>2</td>
<td><a href="https://www.codechef.com/problems/FLOW007" target="_blank">Loops</a></td>
</tr><td>2</td>
<td><a href="https://www.codechef.com/problems/CIELRCPT" target="_blank">Loops</a></td>
</tr><br> <br><br></table>
</center>
</body>
</html>