forked from ankit-c11/ojasswebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
77 lines (72 loc) · 4 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="images/logo.png" type="image" sizes="40px">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Play" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Jura|Rock+Salt" rel="stylesheet">
<script src="js/smooth-scroll.polyfills.js"></script>
<!-- <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet"> -->
<!-- <script src="https://unpkg.com/[email protected]/dist/aos.js"></script> -->
<!-- <script type="text/javascript" src="swiper.min.js"></script> -->
<link rel ="stylesheet" href= "css/style.css">
<link rel ="stylesheet" href= "css/bootstrap.min.css">
<link rel="stylesheet" href="css/loader.css" />
<script type ="text/javascript" src ="js/jquery.js"></script>
<script type ="text/javascript" src ="js/index.js"></script>
<!--fonts-->
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|
Alatsi|Alfa+Slab+One|Bitter|Inria+Serif|Lakki+Reddy|
Lobster|Merriweather|Playfair+Display|Righteous&display=swap" rel="stylesheet">
<!--fonts-->
<style>
body{
margin-left:-4%;
overflow:hidden;
scroll-behavior:smooth;
}
</style>
<title>OJASS'20</title>
</head>
<!-- <body style="margin-left:-4%;"> -->
<?php //include_once 'timer.php'; ?>
<div class="card-menu">
<div class="card-menu-close-menu"></div>
<div class="card-menu-section card-menu-section-1 active" data-section="1">
<div class="card-menu-menu-btn"></div>
<h2 class="card-menu-section-heading"><img src ="images/logo.png" width ="50" height ="50" style ="margin-top:-5%;"> HOME</h2>
<div class = "faq"> <?php include_once 'home.php';?></div>
</div>
<div class="card-menu-section card-menu-section-2 inactive" data-section="2">
<div class="card-menu-menu-btn"></div>
<h2 class="card-menu-section-heading"><img src ="images/logo.png" width ="50" height ="50" style ="margin-top:-5%;"> EVENTS</h2>
<div class = "faq"> <?php include_once 'event.php';?></div>
</div>
<div class="card-menu-section card-menu-section-3 inactive" data-section="3">
<div class="card-menu-menu-btn"></div>
<h2 class="card-menu-section-heading" style="color:yellow"><img src ="images/logo.png" width ="50" height ="50" style ="margin-top:-5%;"> NOTIFICATION</h2>
<div class = "faq"> <?php include_once 'notification.php';?></div>
</div>
<div class="card-menu-section card-menu-section-4 inactive" data-section="4">
<div class="card-menu-menu-btn"></div>
<h2 class="card-menu-section-heading"><img src ="images/logo.png" width ="50" height ="50" style ="margin-top:-5%;"> SPONSORS</h2>
<div class = "faq"> <?php include_once 'sponsors.php';?></div>
</div>
<div class="card-menu-section card-menu-section-5 inactive" data-section="5">
<div class="card-menu-menu-btn"></div>
<h2 class="card-menu-section-heading" style="color:yellow"><img src ="images/logo.png" width ="50" height ="50" style ="margin-top:-5%;"> FAQ</h2>
<div class = "faq"> <?php include_once 'faq.php';?></div>
</div>
<div class="card-menu-section card-menu-section-6 inactive" data-section="6">
<div class="card-menu-menu-btn"></div>
<h2 class="card-menu-section-heading" style="color:yellow"><img src ="images/logo.png" width ="50" height ="50" style ="margin-top:-5%;"> TEAM</h2>
<div class = "faq"> <?php include_once 'team2.php';?></div>
</div>
</div>
<script type = "text/javascript" src="js/main.js"></script>
</body>
</html>