forked from Bhanu0202/CSI-Student-information-desk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.html
122 lines (110 loc) · 5.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000" />
<title>Upcoming Events</title>
<link rel="icon" href="images/favicon.png" sizes="16x16" type="image/png">
<link rel="stylesheet" type="text/css" href="css/event.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Serif+SC|Permanent+Marker" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans|Luckiest+Guy|Righteous|Russo+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="js/index.js"></script>
<!--<script src="library.js"></script>-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<!--navbar----------------------------------------------------------------------------------------------------->
<nav class="navbar navbar-reverse fixed-top">
<a class="navbar-brand" href="https://www.lnmiit.ac.in">
<img src="images/logolnm.png" alt="lnm-logo" id="nav-img">
</a>
<div class ="dropdown ml-auto">
<button class="btn btn-lg btn-outline-light dropdown-toggle" data-toggle="dropdown" id="navbarDropdown">
Hi, User
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<li class="img1"><a class="dropdown-item" href="#"><img src="images/user.jpg"></a></li>
<li><a class="dropdown-item" href="index.html">Home</a></li>
<li><a class="dropdown-item" href="#">Logout</a></li>
<li><a class="dropdown-item" href="change-pswd.html">Change Password</a></li>
</ul>
</div>
</nav>
<div class="sidebar">
<a href="stu-details.html" class="btn">Student Details</a>
<a href="complaint.html" class="btn">Complaint Registration</a>
<a href="lt-booking.html" class="btn">LT booking Portal</a>
<a href="library.html" class="btn ">Library Book Issue</a>
<a href="courses.html" class="btn">Registered Courses</a>
<a href="#" class="btn active">Upcoming Events</a>
</div>
<!--MAIN------------------------------------------------------------------------------------------------------->
<div class="event">
<div id="myDIV">
<div class="row">
<div class="col-md-2">
<div class="round-div">AUG 4</div>
</div>
<div class="news col-md-5">
<h3>CODE DRILL 3.0</h3>
<p>A popular coding contest that covers a wide variety of basic and intermediate concepts and is made for beginners and intermediate coders.</p>
<p>
Start Time : 10pm<br>
Duration : 2 hrs 30 min</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-2">
<div class="round-div">AUG 10</div>
</div>
<div class="news col-md-5">
<h3>TALK ON INTERNET AND LIFE</h3>
<p>Department of HSS is organising an invited talk by Prof. Shikha Dixit from IIT Kanpur. </p>
<p>
Time : 12:00 pm to 01:00 pm<br>
Venu : LT5</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-2">
<div class="round-div">AUG 18</div>
</div>
<div class="news col-md-5">
<h3>MOVIE SCREENING</h3>
<p>We are back with yet another showcasing! An event where you can spend some quality time with your friends watching a complete 3-hours show, leaving behind all the frustrations and anxieties of your life.</p>
<p>
Start Time : 07:00 pm<br>
Venue: MAin Auditorium</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-2">
<div class="round-div">AUG 25</div>
</div>
<div class="news col-md-5">
<h3>OPEN MIC EVENT</h3>
<p>The moonlight glimmers, the crowd convenes, the stage is set and the showdown begins, with Media Cell, LNMIIT, presenting you the ‘Open Mic’ in its most awaited version.</p>
<p>
Time : 04:00 pm to 06:00 pm<br>
Venue: Central Lawn</p>
</div>
</div>
</div>
</div>
<!-- footer ---------------------------------------------------------------------------------------------------->
<footer class="footer navbar fixed-bottom">
<span class="navbar-brand">© Copyright 2019</span>
<button id="scroll-top" onclick="toTop()" class="btn btn-outline-light"><i class="fa fa-arrow-up" aria-hidden="true"></i></button>
</footer>
</body>
</html>