-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopers.php
144 lines (108 loc) · 6.05 KB
/
developers.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
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
<?php
//------------------------------>> CENTRALIZED TECHFEST NAME WITH YEAR
require_once "config/techfestName.php";
//-------------------------->> START SESSION
session_start();
?>
<!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">
<title><?php echo $techfestName ?> | DEVELOPERS</title>
<!-- First Include Header Scripts then ImageHover.css-->
<?php include_once "includes/headerScripts.php"; ?>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/imagehover.css/2.0.0/css/imagehover.min.css">
</head>
<body>
<!--Include User Navbar-->
<?php include_once "includes/navbar.php"; ?>
<main class="container">
<h1 class="text-center text-uppercase mt-5 font-Staatliches-heading">Development Team</h1>
<hr class="mb-5" style="border-top: 2px solid rgba(0,0,0,.1);"/>
<div class="row">
<section class="col-md-4 mb-5">
<div class="card shadow p-3" data-aos="zoom-in" data-aos-duration="1500">
<figure class="imghvr-zoom-out">
<img src="images/developers/developer1.jpg" class="img-fluid" alt="Vishal Bait">
<figcaption>
<div class="text-center my-3">
<h4 class="font-time mb-4">VISHAL BAIT</h4>
<h5>Web Designer, Database, Back-End & Front-End Developer </h5>
<div class="mt-3">
<h6 class="mb-2">Follow Me on Social Media</h6>
<i class="fab fa-facebook fa-2x ml-2"><a href="https://www.facebook.com/vrbait1107"></a></i>
<i class="fab fa-instagram fa-2x ml-2"><a href="https://www.instagram.com/vrbait1107/"></a></i>
<i class="fab fa-twitter fa-2x ml-2"><a href="https://twitter.com/vrbait1107"></a></i>
<i class="fab fa-linkedin fa-2x ml-2"><a href="https://in.linkedin.com/in/vrbait1107"></a></i>
<i class="fab fa-github fa-2x ml-2"><a href="https://github.com/vrbait1107"></a></i>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="text-center mt-5" data-aos="fade-up">
<h4 class="font-time mb-2 text-primary">VISHAL BAIT</h4>
<h5 class="font-time">Web Designer, Database, Back-End & Front-End Developer </h5>
</div>
</section>
<section class="col-md-4 mb-5">
<div class="card shadow p-3" data-aos="zoom-in" data-aos-duration="1500">
<figure class="imghvr-zoom-out">
<img src="images/developers/developer2.jpg" class="img-fluid" alt="Suraj Mohite">
<figcaption>
<div class="text-center my-3">
<h4 class="font-time mb-4">SURAJ MOHITE</h4>
<h5>Front-End Developer </h5>
<div class="mt-3">
<h6 class="mb-2">Follow Me on Social Media</h6>
<i class="fab fa-facebook fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-instagram fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-twitter fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-linkedin fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-github fa-2x ml-2"><a href="#"></a></i>
</div>
</div>
</figcaption>
</figure>
</div>
<div class="text-center mt-5" data-aos="fade-up">
<h4 class="font-time mb-2 text-primary">SURAJ MOHITE</h4>
<h5 class="font-time">Front-End Developer </h5>
</div>
</section>
<section class="col-md-4 mb-5">
<div class="card shadow p-3" data-aos="zoom-in" data-aos-duration="1500">
<figure class="imghvr-zoom-out">
<img src="images/developers/developer3.jpg" class="img-fluid" alt="Onkar Mokashi">
<figcaption>
<div class="text-center my-3" data-aos="fade-up">
<h4 class="font-time mb-4">ONKAR MOKASHI</h4>
<h5>Back-End Developer and Android Application Developer </h5>
</div>
<div class="mt-3 text-center">
<h6 class="mb-2">Follow Me on Social Media</h6>
<i class="fab fa-facebook fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-instagram fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-twitter fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-linkedin fa-2x ml-2"><a href="#"></a></i>
<i class="fab fa-github fa-2x ml-2"><a href="#"></a></i>
</div>
</figcaption>
</figure>
</div>
<div class="text-center mt-5" data-aos="fade-up">
<h4 class="font-time mb-2 text-primary">ONKAR MOKASHI</h4>
<h5 class="font-time">Back-End Developer and Android Application Developer </h5>
</div>
</section>
</div>
</main>
<!-- Include Footer & Footer Script -->
<?php
include_once "includes/footer.php";
include_once "includes/footerScripts.php";
?>
</body>
</html>