forked from GarimaSingh0109/WasteManagment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community.html
201 lines (179 loc) · 6.32 KB
/
community.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
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Team - Waste Management</title>
<link rel="icon" href="./assets/logo.png">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap" rel="stylesheet">
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js"></script>
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background: #00796b;
color: white;
padding: 1rem 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
.team-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 20px;
}
.team-member {
perspective: 1000px;
margin: 15px;
width: 250px;
}
.card {
position: relative;
width: 100%;
height: 250px;
transition: transform 0.6s;
transform-style: preserve-3d;
}
.card:hover {
transform: rotateY(180deg);
}
.card-front,
.card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card-front {
display: flex;
align-items: center;
justify-content: center;
background-color: #ffffff;
}
.card-back {
background-color: #4CAF50;
color: white;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
transform: rotateY(180deg);
text-align: center;
padding: 10px;
}
.social-media a {
color: white;
margin: 5px 10px;
text-decoration: none;
}
footer {
background: #00796b;
color: white;
text-align: center;
padding: 1rem 0;
position: relative;
}
</style>
</head>
<body>
<header>
<h1>Waste Management</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="../WasteManagment/CARBON FOOTPRINT CALC/welcome.html">Carbon footprint</a></li>
<li><a href="register.html">Sign up</a></li>
<li><a href="#footer">Contact</a></li>
<li class="theme-switch" id="theme-switch"></li>
</ul>
</nav>
</header>
<main>
<section class="team">
<h2 style="text-align: center;">Our Dedicated Team</h2>
<div class="team-container">
<div class="team-member">
<div class="card">
<div class="card-front">
<img src="https://avatars.githubusercontent.com/u/130893914?v=4" alt="Team Member 1" style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;">
</div>
<div class="card-back">
<h3>Garima Singh</h3>
<p>Project Manager</p>
<div class="social-media">
<a href="https://www.linkedin.com/in/garima-singh-279014264" target="_blank">LinkedIn</a>
<a href="https://github.com/GarimaSingh0109" target="_blank">GitHub</a>
</div>
</div>
</div>
</div>
<div class="team-member">
<div class="card">
<div class="card-front">
<img src="./assets/member2.jpg" alt="Team Member 2" style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;">
</div>
<div class="card-back">
<h3>Jane Smith</h3>
<p>Environmental Specialist</p>
<div class="social-media">
<a href="https://www.linkedin.com/in/janesmith" target="_blank">LinkedIn</a>
<a href="https://github.com/janesmith" target="_blank">GitHub</a>
</div>
</div>
</div>
</div>
<div class="team-member">
<div class="card">
<div class="card-front">
<img src="./assets/member3.jpg" alt="Team Member 3" style="width: 100%; height: 100%; object-fit: cover; border-radius: 8px;">
</div>
<div class="card-back">
<h3>Alex Johnson</h3>
<p>Community Outreach</p>
<div class="social-media">
<a href="https://www.linkedin.com/in/alexjohnson" target="_blank">LinkedIn</a>
<a href="https://github.com/alexjohnson" target="_blank">GitHub</a>
</div>
</div>
</div>
</div>
<!-- Add more team members as needed -->
</div>
</section>
</main>
<footer id="footer">
<h2>Stay Connected</h2>
<form id="newsletter-form">
<input type="email" placeholder="Your Email" required>
<button type="submit">Subscribe</button>
</form>
<div class="social-media">
<a href="#"><box-icon type="logo" name="facebook"></box-icon> Facebook</a>
<a href="#"><box-icon type="logo" name="twitter"></box-icon> Twitter</a>
<a href="#"><box-icon type="logo" name="instagram"></box-icon> Instagram</a>
</div>
<p>© 2024 Waste Management. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>