-
Notifications
You must be signed in to change notification settings - Fork 4
/
team.php
executable file
·118 lines (95 loc) · 3.62 KB
/
team.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
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
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<?php include 'includes/head.php'; ?>
</head>
<body>
<!-- Page Preloder -->
<?php include 'includes/preloader.php'; ?>
<!-- Header -->
<?php include 'includes/header.php'; ?>
<!-- Navbar -->
<?php include 'includes/navbar.php'; ?>
<!-- Side Nav -->
<?php include 'includes/sidenav.php'; ?>
<!-- Breadcrumb section -->
<div class="site-breadcrumb">
<div class="container">
<a href="index.php"><i class="fa fa-home"></i>Home</a> <i class="fa fa-angle-right"></i>
<span>Meet the developers</span>
</div>
</div>
<!-- Breadcrumb section end -->
<!-- Team section -->
<section class="team-section spad pt-0">
<div class="container">
<div class="section-title text-center">
<h3>OUR TEAM</h3>
<p>Bringing out the best in each other!</p>
</div>
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="member">
<div class="member-pic set-bg" data-setbg="img/team/1.jpg">
<div class="member-social">
<a target="_blank" href="https://www.linkedin.com/in/deepamgupta/"><i class="fab fa-linkedin"></i></a>
<a target="_blank" href="https://github.com/deepamgupta"><i class="fab fa-github"></i></a>
<a target="_blank" href="https://www.facebook.com/dpmgupta"><i class="fa fa-facebook"></i></a>
</div>
</div>
<h5>Deepam Gupta</h5>
<p>IET-DAVV, Indore</p>
</div>
</div>
<div class="col-md-6 col-lg-6">
<div class="member">
<div class="member-pic set-bg" data-setbg="img/team/2.jpg">
<div class="member-social">
<a target="_blank" href="https://www.linkedin.com/in/pratik-mehta-983211166/"><i class="fab fa-linkedin"></i></a>
<a target="_blank" href="https://github.com/Pratikmehta1729"><i class="fab fa-github"></i></a>
<a target="_blank" href="https://www.facebook.com/profile.php?id=100006228130872"><i class="fa fa-facebook"></i></a>
</div>
</div>
<h5>Pratik Mehta</h5>
<p>IET-DAVV, Indore</p>
</div>
</div>
<div class="col-md-6 col-lg-6">
<div class="member">
<div class="member-pic set-bg" data-setbg="img/team/3.jpg">
<div class="member-social">
<a target="_blank" href="https://www.linkedin.com/in/samyak-jain-abaa6716a"><i class="fab fa-linkedin"></i></a>
<a target="_blank" href="https://github.com/Samyak109"><i class="fab fa-github"></i></a>
<a target="_blank" href="https://www.facebook.com/samyak.jain.5245"><i class="fa fa-facebook"></i></a>
</div>
</div>
<h5>Samyak Jain</h5>
<p>IET-DAVV, Indore</p>
</div>
</div>
</div>
</div>
<div class="text-center mt-2 mb-4" id="mentors">
<a href="#mentors-dropdown" class="btn btn-success" data-toggle="collapse">Mentors</a>
<div id="mentors-dropdown" class="collapse">
<div class="mt-3">
Dr. Vrinda Tokkekar<br>
Dr. Maya Ingle<br>
Mr. Sachin Mandwariya<br>(CEO, Workaholics Infocorp.)<br>
Miss Anshika Jain<br>
</div>
</div>
</div>
<div class="text-center">
<a href="https://github.com/deepamgupta/ddukk" target="_blank"><img class="img-fluid" style="height:3rem;" src="./img/fork.png"> this project on <img class="img-fluid" style="height:3rem;" src="./img/github.png"></a>
</div>
</section>
<!-- Footer section -->
<?php include 'includes/footer.php'; ?>
<!-- Back 2 Top -->
<?php include 'includes/back2Top.php'; ?>
<!--====== Javascripts & Jquery ======-->
<?php include 'includes/javascripts.php'; ?>
</body>
</html>