-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwhen.html
74 lines (71 loc) · 2.03 KB
/
when.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
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Schedule - Code Till You Die
</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div id="container"><!--Main div-->
<header>
<h1>CODE TILL YOU DIE</h1>
<h3>An Online Coding Competition</h3>
</header>
<nav id="menu">
<ul>
<li class="menuitem"><a href="index.html">Home</a></li>
<li class="menuitem"><a href="eligible.html">Eligibility</a></li>
<li class="menuitem"><a href="when.html">Date & Time</a></li>
<li class="menuitem"><a href="prizes.html">Prizes</a></li>
<li class="menuitem"><a href="register.html">Register</a></li>
<li class="menuitem"><a href="sponsors.html">Sponsors</a></li>
</ul>
</nav>
<nav id="leftmenu">
<h3>Quick Links</h3>
<ul>
<li><a href="http://www.avensis.in">Avensis-2K16</a></li>
<li><a href="http://www.geeksforgeeks.org">GeeksForGeeks</a></li>
<li><a href="http://www.hackerearth.com">HackerEarth</a></li>
<li><a href="http://www.ideone.com">ideone</a></li>
<li><a href="http://www.stackexchange.com">StackExchange</a></li>
<li><a href="http://www.liquidserve.com">LiquidServe</a></li>
</ul>
</nav>
<section>
<h2>Schedule of CTYD</h2>
<h4>Round 1: Code O' Shuffle</h4>
<table>
<thead>
<td>Date</td>
<td>Time</td>
</thead>
<tr>
<td>3rd Feb. 2k16</td>
<td>1230 HRS to 1430 HRS (IST)</td>
</tr>
</table>
<br>
<p style="font-size: 10px;">**To participate in MSIT, report in Lab. LG09 or Lab. 402 before 12 noon.</p>
<br>
<h4>Round 2: Clash of Coders</h4>
<table>
<thead>
<td>Date</td>
<td>Time</td>
</thead>
<tr>
<td>4th Feb. 2k16</td>
<td>1130 HRS to 1300 HRS (IST)</td>
</tr>
</table>
<br>
<p style="font-size: 10px;">**To participate in MSIT, report in Lab. 402 before 11:00 AM.</p>
</section>
</div>
<div style="clear:both;"></div>
<footer>
Copyright 2016 CODE TILL YOU DIE
</footer>
</body>
</html>