-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutPage.php
75 lines (59 loc) · 3 KB
/
aboutPage.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
<?php
//------------------------------>> CENTRALIZED TECHFEST NAME WITH YEAR
require_once "config/techfestName.php";
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Vishal Bait">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title><?php echo $techfestName ?> | ABOUT</title>
<!-- First AOS Animation then Include Header Scripts then CSS file -->
<?php include_once "includes/headerScripts.php"; ?>
<link rel="stylesheet" href="css/aboutPage.css">
</head>
<body>
<!-- Include User Navbar-->
<?php include_once "includes/navbar.php"; ?>
<main class="container">
<div class="row">
<section class="col-md-10 offset-md-1">
<div class="p-5 my-3 text-justify" data-aos="zoom-in" data-aos-duration="1500">
<h1 class="p-1 text-center text-uppercase font-Staatliches-heading">About Shodh</h1>
<hr class="mb-5" style="border-top: 2px solid rgba(0,0,0,.1);"/>
<p>SHODH, GIT Lavel is the annual science and technology festival of the Gharda Institute of
Technology Lavel.
Started in 2008 with the aim of providing a platform for the Indian student community to develop
and showcase
their technical prowess. </p>
<p>Year after year, SHODH explores the various aspects of science and technology and the profound
impacts they have
on our lives. For the last 12 years, SHODH has constantly grown, evolved, and pushed the
boundaries of what a
college fest can be. With something to offer for everyone, SHODH is the ideal destination for
all technophiles:
young or old, beginner or expert, student or professional to witness, learn and experience the
wonders of science
and technology.</p>
<p> This year marks the 12th Edition of SHODH, GIT Lavel. The fest shall take place from 7th to 8th
of March,
2020 at the beautiful, green campus of GIT Lavel in Maharashtra, India. Boasting of a huge
roster of exciting and
engaging events, this edition of SHODH promises to be grander, greater and more glorious than
ever before.</p>
<p> So grab your friends, mark your calendars, and gear up for Kokan’s Largest Science and
Technology Festival. </p>
</div>
</section>
</div>
</main>
<!-- Include Footer & Footer Scripts -->
<?php
include_once 'includes/footer.php';
include_once "includes/footerScripts.php";
?>
</body>
</html>