-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (78 loc) · 3.29 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
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>RE.T3CH</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A 12 hour unique college hackathon" />
<meta name="keywords" content="RE.T3CH, retech, iips, davv, hackathon, indore, college" />
<meta name="author" content="adeen-s" />
<link href="https://fonts.googleapis.com/css?family=Chakra+Petch" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<canvas id="q"></canvas>
<div class="above">
<h1>RE.T3CH 2.0</h1>
<h3>Hackathon by the <a href="https://codeindore.github.io"><u>codeIndore( ) community</u></a></h3>
<h4>International Institute of Professional Studies, DAVV, Indore, India</h4>
<br />
<p>Mark your calendars for the <strong>15th and 16th of February, 2019</strong>. RE.T3CH is back!!</p>
<br />
<a href="/registration.html"><button class="btn">Register Here</button></a>
<p><a href="home.html">To check out other versions of RE.T3CH, <u>click here</u></a></p>
<br />
<p>Interested in sponsoring us? Please <a href="mailto:sponsor@codeindore.com"><b>send us a mail.</b></a></p>
<br />
<p><strong>Remember, the rules and format of the event have changed, read them carefully before registering.</strong></p>
<div class="rules">
<ul>
<li>Filling the registration form does not guarantee your participation in the hackathon.</li>
<li>For Students of SCSIT and IET, teams willl be selected based on the responses in the form and the profiles of team members</li>
<li>For students of IIPS, the selection criteria will be revealed soon.</li>
<li>Filling this form is free</li>
<li>All communication will be made through the team leaders.</li>
<li>Selected teams must pay a fees of Rs. 100 per person to confirm their participation.</li>
</ul>
</div>
<div class="sponsors">
<h2>Sponsors</h2>
<div class="row">
<div class="column">
<a href="https://education.github.com"><img src="res/GitHub_Logo_White.png" alt="GitHub logo" ></a>
</div>
<div class="column">
<a href="https://cloudinglab.com"><img src="res/cloudinglab.png" alt="Cloudinglab logo" ></a>
</div>
</div>
<h4></h4>
</div>
<div class="footer">
<a href="/">Home</a> 
<a href="/coc.html">Code Of Conduct</a> 
<a href="http://iips.edu.in">IIPS</a> 
<a href="https://codeindore.github.io">codeIndore( )</a> 
<a href="mailto:codeindore@gmail.com">Contact Us</a>
</div>
</div>
<script type="text/javascript">
var s = window.screen;
var width = q.width = s.width;
var height = q.height = s.height;
var letters = Array(256).join(1).split('');
var draw = function () {
q.getContext('2d').fillStyle='rgba(0,0,0,.05)';
q.getContext('2d').fillRect(0,0,width,height);
q.getContext('2d').fillStyle='#0F0';
letters.map(function(y_pos, index){
text = String.fromCharCode(50+Math.random()*45);
x_pos = index * 10;
q.getContext('2d').fillText(text, x_pos, y_pos);
letters[index] = (y_pos > 758 + Math.random() * 1e4) ? 0 : y_pos + 10;
});
};
setInterval(draw, 33);
</script>
</body>
</html>