-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
124 lines (106 loc) · 5.01 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/images/rose.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Legacy Repeats. The promised land awaits your arrival." >
<meta property="og:site_name" content="LA FEST">
<meta property="og:title" content="LA FEST" />
<meta property="og:url" content="https://www.lafest.in" />
<meta property="og:description" content="The Colosseum reopens after an interlude of VI years. Here the fight isn’t over till only the winner stands. Legacy Repeats. The promised land awaits your arrival." />
<meta property="og:image" content="https://i.postimg.cc/yNSB7scn/image-2022-05-06-205636366.png"/>
<meta name="keywords" content="Loyola School, LA FEST, LA FEST 2022">
<title>LA FEST 2022</title>
</head>
<body>
<header>
<a href="../index.html" class="logo">LA FEST</a>
<div class="toggleMenu" onclick="menuToggle();"></div>
<ul class="navigation">
<li class="active"><a href="../index.html" >HOME</a></li>
<li><a href="../Legacy/index.html">LEGACY</a></li>
<li><a href="../Events/index.html" >EVENTS</a></li>
<li><a href="../rules/index.html">RULES</a></li>
<li><a href="../aboutus/index.html">ABOUT US</a></li>
</ul>
</header>
<div class="container">
<a style="z-index:100;" href="https://www.youtube.com/watch?v=P0jNydBZyeE" target="_blank"><img alt="logo" src="images/logo white.png" style="height:400px;width: auto;" class="logo js-tilt"/></a>
<h1>
A DAY IN REALITY <br>
AN EPOCH IN MEMORY
</h1>
<p id="demo"></p>
<video playsinline autoplay muted loop src="https://themes.fourthwall.com/themes/assets/11d2f253-34b7-4fdc-b01b-17868cd74972/assets/video-bg-light.mp4?v=364d6351-2cdd-8622-b962-d429a0989974">
</div>
</div>
<ul class="social" style="flex-direction: row;">
<li ><a href="https://www.youtube.com/channel/UC-2rdXxP10HKeRjbrIFm3UA/featured"><img src="images/152810.png"></a></li>
<li><a href="https://www.instagram.com/lafest.22"><img src="https://i.ibb.co/ySwtH4B/instagram.png"></a></li>
</ul>
<script>
$('.js-tilt').tilt({
glare: true,
maxGlare: 1000,
reset: true,
scale: 1.1
})
</script>
<script type="text/javascript">
function menuToggle()
{
const toggleMenu = document.querySelector('.toggleMenu');
const navigation = document.querySelector('.navigation');
toggleMenu.classList.toggle('active')
navigation.classList.toggle('active')
}
</script>
<!-- <script>
// Set the date we're counting down to
var countDownDate = new Date("July 2, 2022 08:30:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("demo").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = ".";
}
}, 1000);
</script> -->
<footer>
<div style="font-size: 12px; display: flex; justify-content: center; width: 100%; padding: 5px 0px;">
<div style="display: flex; align-items: center;">
<h3>Contact Us</h3>
</div>
<div >
</div>
</div>
<div style="font-size: 12px; display: flex; justify-content:left; width: 100%;padding: 10px 0;">
<div >
<ul id="footer" style="list-style: none; display: flex; gap: 0 10px;">
<li>Fr Roy Alex SJ : +91 8921472900</li>
<li>Abhay Pillai: +91 85900 63944 </li>
<li>Ayan A Haq: +91 85475 53329</li>
</ul>
<div style="align-items:left; list-style:none;padding: 0 -50px;">
<li>Official email : <a href="mailto:[email protected]">[email protected]</a></li>
</div>
</div>
</div>
</footer>
</body>
</html>