-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-team.html
More file actions
80 lines (71 loc) · 3.48 KB
/
about-team.html
File metadata and controls
80 lines (71 loc) · 3.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VisuPhy - Meet Our Team</title>
<link rel="icon" type="image/png" href="favicon.png">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" />
<!-- Shared Styles -->
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="footer.css">
<!-- Page-Specific Styles -->
<link rel="stylesheet" href="about-team.css">
</head>
<body>
<!-- Dynamic Header Include -->
<div id="header-placeholder"></div>
<main class="team-container">
<h1>Meet Our Team</h1>
<p class="team-mission">
Passionate educators and developers working to make physics accessible to everyone, everywhere.
</p>
<div class="team-grid">
<!-- Founder Card -->
<div class="team-member-card founder-card">
<img src="https://github.com/Hussein-Tofaili.png" alt="Hussein-Tofaili profile picture"
class="member-photo">
<div class="member-info">
<div class="member-role">Founder</div>
<h3 class="member-name">
<a href="https://github.com/Hussein-Tofaili" target="_blank" rel="noopener">Hussein-Tofaili</a>
</h3>
<p class="member-description">
Physics student and founder of VisuPhy. My passion for coding and visualizing how the physics
works drove me to build this platform. <br>Free and always will be, because students deserve
better.
</p>
</div>
</div>
<!-- Join Team Card -->
<div class="team-member-card join-team-card">
<img src="https://github.com/github.png?size=80" alt="Join our team" class="member-photo">
<div class="member-info">
<div class="member-role">Future Member</div>
<h3 class="member-name">
<a href="mailto:visuphy@gmail.com">Join Our Mission</a>
</h3>
<p class="member-description">
Want to help make physics education accessible to everyone? We welcome physicists, programmers,
designers, and anyone passionate about education.
<br><br>
❓ <a href="/faq#join-team">Learn more about joining in the FAQ section</a><br>
📧 <a href="mailto:visuphy@gmail.com">Contact us</a><br>
💻 <a href="https://github.com/visuphy" target="_blank" rel="noopener">Contribute on
GitHub</a><br>
</p>
</div>
</div>
</div>
</main>
<!-- Dynamic Footer Include -->
<div id="footer-placeholder"></div>
<!-- Script to include Header/Footer -->
<script src="/layout.js" defer></script>
</body>
</html>