-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheventcat.html
executable file
·105 lines (102 loc) · 3.63 KB
/
eventcat.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
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="js/jquery.cookie.min.js"></script>
<script>
Cookies.set("previousUrl", window.location.href, {
path: "/"
});
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#004894">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#004894">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#004894">
<title>Events Categories | Anaadyanta 2017</title>
<meta name="description" content="Categories of events in Anaadyanta 2017" />
<meta name="keywords" content="Anaadyanta, Events, Cultural, Technical, Gaming, Sports, Techno-Cultural fest, Nitte Meenakshi Institute of Technology, NMIT, Dive! Feel & Come Alive, 9th 10th & 11th March 2017"
/>
<meta name="author" content="Rajnarayan | Anaadyanta Web Team" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/demo_eventcat.css" />
<link rel="stylesheet" type="text/css" href="css/style_eventcat.css" />
<link rel="stylesheet" type="text/css" href="css/linkstyler.css" />
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:400" rel="stylesheet">
<script type="text/javascript">
function back() {
window.location.href = 'index.html';
}
</script>
<style>
.navig:hover {
font-size: 1.2em !important;
transform: scale(1.2, 1.2);
-moz-transform: scale(1.2, 1.2);
-o-transform: scale(1.2, 1.2);
-webkit-transform: scale(1.2, 1.2);
transition: 0.3s;
}
</style>
</head>
<body>
<canvas id='bgCanvas'></canvas>
<div class="container" style="z-index: 100">
<div class="navig" style="position: absolute; top:0; left:0; margin-top: 1%; margin-left: 3%; cursor: pointer; z-index: 150; color: white;">
<i class="fa fa-arrow-left fa-2x" aria-hidden="true" onclick="back()"></i>
</div>
<div class="grid" style="font-size: 1.3em; margin-bottom: 2%;">
<div class="grid__item">
<a class="linkerd link--takiri" href="#">Events</a>
</div>
</div>
<section class="main">
<ul class="ch-grid">
<li>
<div class="ch-item">
<div class="ch-info">
<h3>Cultural Events</h3>
<p>Dive Into Euphoria!<a href="cultural.html">View now</a></p>
</div>
<div class="ch-thumb ch-img-1"></div>
</div>
</li>
<li>
<div class="ch-item">
<div class="ch-info">
<h3>Technical Events</h3>
<p>Feel the Innovation!<a href="technical.html">View now</a></p>
</div>
<div class="ch-thumb ch-img-2"></div>
</div>
</li>
<li>
<div class="ch-item">
<div class="ch-info">
<h3>Pro Nights</h3>
<p>Let your Soul Come Alive!<a href="pronights.html">View now</a></p>
</div>
<div class="ch-thumb ch-img-3"></div>
</div>
</li>
</ul>
</section>
</div>
<script src="js/eventcat.js"></script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script>
// Show hover effect on mobile devices
[].slice.call(document.querySelectorAll('.grid a')).forEach(function (el) {
el.onclick = function () {
return false;
}
});
</script>
</body>
</html>