forked from knotsid/countdown-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent.html
147 lines (134 loc) · 4.94 KB
/
event.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="project/favicon.ico" />
<title>Student Activity Cell</title>
<link rel="stylesheet" href="event.css">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<section class="headborder">
<nav>
<a href="index.html"><img src="logo.png" class="logo"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a> </li>
<li><a href="about.html">ABOUT</a> </li>
<li><a href="#">EVENTS</a> </li>
<li><a href="ALUMNI.html">ALUMNI</a> </li>
<li><a href="team.html">TEAMS</a> </li>
<li><a href="signUp.html">LOGIN/REGISTER</a> </li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()" ></i>
</nav>
</section>
<div>
<img class="mySlides" src="1.png" style="width:100%" height="550px">
<img class="mySlides" src="2.png" style="width:100%" height="550px">
<img class="mySlides" src="3.png" style="width:100%" height="550px">
<img class="mySlides" src="4.png" style="width:100%" height="550px">
<!-- <button class="w3-button w3-display-left" onclick="plusDivs(-1)">❮</button>
<button class="w3-button w3-display-right" onclick="plusDivs(+1)">❯</button> -->
<!-- <script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length} ;
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
</script> -->
<script>
var slideIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
slideIndex++;
if (slideIndex > x.length) {slideIndex = 1}
x[slideIndex-1].style.display = "block";
setTimeout(carousel, 2000); // Change image every 2 seconds
}
</script>
</div>
<section class="course">
<h1>Events at Dr. AITH, Kanpur</h1>
<p>Exclusive events, priceless memories</p>
<div class="row">
<div class="course-col">
<img src="2.png" style="width: 350px; height: 200px;">
<h3 class="heading">Shankhnaad 2020</h3>
</div>
<div class="course-col">
<img src="4.png" style="width: 350px; height: 200px;">
<h3 class="heading">Aaveg 2020</h3>
</div>
<div class="course-col">
<img src="6.png" style="width: 350px; height: 200px;">
<h3 class="heading">Seminars</h3>
</div>
</div>
</section>
<footer>
<div class="content">
<div class="left box">
<div class="upper">
<div class="topic">About us</div>
<p>CodingLab is a channel where you can learn HTML,
CSS, and also JavaScript along with creative CSS Animations and Effects.</p>
</div>
</div>
<div class="middle box">
<div class="topic">Contact us</div>
<div class="phone">
<a href="#"><i class="fa fa-phone-volume"></i>+007 9089 6767</a>
</div>
<div class="email">
<a href="#"><i class="fa fa-envelope"></i>abc@gmail.com</a>
</div>
</div>
<div class="right box">
<div class="topic">Follow us</div>
<form action="#">
<div class="media-icons">
<a href="#"><i class="fa fa-facebook-f"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
</form>
</div>
</div>
<div class="bottom">
<p>Copyright © 2020 <a href="#">Pragya Singh</a> All rights reserved</p>
</div>
</footer>
<!-----Javascript for toggle menu---->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>