-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
92 lines (85 loc) · 3.18 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
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
<!DOCTYPE html>
<html>
<head>
<title>Homepage - 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" target="_blank">Avensis-2K16</a></li>
<li><a href="http://www.geeksforgeeks.org" target="_blank">GeeksForGeeks</a></li>
<li><a target="_blank" href="http://www.hackerearth.com">HackerEarth</a></li>
<li><a target="_blank" href="http://www.ideone.com">ideone</a></li>
<li><a target="_blank" href="http://www.stackexchange.com">StackExchange</a></li>
<li><a target="_blank" href="http://www.liquidserve.com">LiquidServe</a></li>
</ul>
</nav>
<section>
<h2>About CTYD</h2>
<img src="images/banner.jpg" class="float" width=400>
<p>Code Till You Die (CTYD) is one of the major highlights of Avensis - the annual tech-fest of Maharaja Surajmal Institute of Technology, New Delhi. It is an online coding competition in which programmers solve real-world problems with their code. The code can be in any programming language. Best 150 coders of Round-1 will be eligible for Round-2 that contains problems of higher difficulty. The sole purpose of this competiton is to introduce beginners to competitive programming.
</p>
</section>
<section>
<h2>About the Organisers</h2>
<div class="developer">
<h4>Akshay Solanki</h4>
<ul>
<li>Publicity Incharge</li>
<li>Student (IT Deptt.)</li>
</ul>
<a href="https://www.facebook.com/akshay.solanki.330" target="_blank">Akshay on Facebook</a>
</div>
<div class="developer">
<h4>Shubhangi Gupta</h4>
<ul>
<li>Sponsorship Head</li>
<li>Student (IT Deptt.)</li>
</ul>
<a target="_blank" href="https://www.facebook.com/shubhangi.gupta.9803">Shubhangi on Facebook</a>
</div>
<div class="developer">
<h4>Kushagr</h4>
<ul>
<li>Problem-Tester</li>
<li>Student (CSE Deptt.)</li>
</ul>
<a target="_blank" href="https://www.facebook.com/kushagrarora.17">Kushagr on Facebook</a>
</div>
<div class="developer">
<h4>Nikhil Kumar Singh</h4>
<ul>
<li>Problem-Setter</li>
<li>Student (CSE Deptt.)</li>
</ul>
<a target="_blank" href="https://www.facebook.com/nikhilkumar.singh.don">Nikhil on Facebook</a>
</div>
<p>
<br>... and there are some others too. <a href="coordinators.html">View Them</a>
</p>
</section>
</div><!--Main div ends-->
<div style="clear:both;"></div>
<footer>
Copyright 2016 CODE TILL YOU DIE
</footer>
</body>
</html>