-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
189 lines (162 loc) · 3.93 KB
/
about.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!-- ABOUT/CONTACT US -->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Us</title>
<script>
function redirect()
{
window.location.href = "mailto:[email protected]";
}
</script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.column {
float: left;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(122, 36, 36, 0.2);
margin: 8px;
}
.about-section {
padding: 20px;
text-align: center;
background-color: #474e5d;
color: white;
}
.navbar {
overflow: hidden;
background-color: #333;
}
/* Style the navigation bar links */
.navbar a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
/* Right-aligned link */
.navbar a.right {
float: right;
}
/* Change color on hover */
.navbar a:hover {
background-color: rgb(247, 29, 29);
color: black;
}
.container {
padding: 0 16px;
}
.container::after, .row::after {
content: "";
clear: both;
display: table;
}
.title {
color: grey;
}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
}
.button:hover {
background-color: #555;
}
.footer {
padding: 6px;
text-align: center;
background: #ddd;
}
@media screen and (max-width: 650px) {
.column {
width: 100%;
display: block;
}
}
</style>
</head>
<body>
<div class="about-section">
<h1>Payment Gateway Integration | About Us </h1>
<p>We are always ready to help you !!!!</p>
</div>
<div class="navbar">
<!-- <a href="admin_t.html" class="right">ADMIN</a>
<a href="Registration.html" class="right">REGISTRATION </a> -->
<a href="home.html" class="right">HOME</a>
</div>
<h2 style="text-align:center">Our Team</h2>
<div class="row">
<div class="column">
<div class="card">
<div class="container">
<h2>Hritik Chauhan</h2>
<p class="title">CEO</p>
<label>EMAIL</label>
<p><button class="button">[email protected]</button></p>
<p><button class="button" onclick = "window.location.href = 'mailto: [email protected]';">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<div class="container">
<h2>Ramesh</h2>
<p class="title">Manager</p>
<label>EMAIL</label>
<p ><button class="button">[email protected]</button></p>
<p><button class="button"onclick = "window.location.href = 'mailto: [email protected]';">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<div class="container">
<h2>Anurag Singh</h2>
<p class="title">Technical Help</p>
<label>EMAIL</label>
<p><button class="button">[email protected]</button></p>
<p><button class="button"onclick = "window.location.href = 'mailto: [email protected]';">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<div class="container">
<h2>Aniket Rawat</h2>
<p class="title">Treasurer</p>
<label>EMAIL</label>
<p><button class="button">[email protected]</button></p>
<p><button class="button"onclick = "window.location.href = 'mailto: [email protected]';">Contact</button></p>
</div>
</div>
</div>
</div>
<div class="footer">
<h2>The Spark Foundation</h2>
<p style="font-size: medium;">Task 3 by Hritik Chauhan</p>
</div>
</body>
</html>