forked from bgsentayehu/ASA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteams.html
More file actions
91 lines (89 loc) · 2.78 KB
/
Copy pathteams.html
File metadata and controls
91 lines (89 loc) · 2.78 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
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>African Students Association</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="images/Untitled design.png">
</head>
<body>
<header>
<div class="mini-nav fancy">
<div class="logo">
<img src="images/sweetness.png" alt="School logo">
<h1>African Students Association</h1>
</div>
<ul class="nav-links">
<li><a href="registration.html">Registration</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="menu-btn" onclick="toggleMenu()">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</button>
</div>
<nav class="scroll-hide">
<ul class="full-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="teams.html">Teams</a></li>
</ul>
</nav>
</header>
<main>
<section id="teams">
<h2>Meet our Exec Team</h2>
<p>Meet the dedicated members of our executive team who work tirelessly to make African Students Association a success:</p>
<div class="team-members">
<div class="member">
<img src="images/nardi.jpg" alt="Nardos Yetbarek" onclick="openModal(this)">
<h4>Nardos Yetbarek</h4>
<p>President</p>
</div>
<div class="member">
<img src="images/Shania.jpg" alt="Shania Rehmudin" onclick="openModal(this)">
<h4>Shania Rehmudin</h4>
<p>Vice President</p>
</div>
<div class="member">
<img src="images/leul.jpg" alt="Leul Abate" onclick="openModal(this)">
<h4>Leul Abate</h4>
<p>Treasurer</p>
</div>
<div class="member">
<img src="images/malak.jpg" alt="Malak Abdullal" onclick="openModal(this)">
<h4>Malak Abdullal</h4>
<p>Secretary</p>
</div>
<div class="member">
<img src="images/fruit.jpg" alt="Fruit Habib" onclick="openModal(this)">
<h4>Fruit Habib</h4>
<p>Events Coordinator</p>
</div>
<div class="member">
<img src="images/Abei.jpg" alt="Abiei Athiu" onclick="openModal(this)">
<h4>Abiei Athiu </h4>
<p>Public Relations</p>
</div>
<div class="member">
<img src="images/bk.jpg" alt="Beakal Sentayehu" onclick="openModal(this)">
<h4>Beakal Sentayehu</h4>
<p>Social Media Chair</p>
</div>
<div class="group-photo">
<img src="images/Group.jpg" alt="African Students Association Executive Team Group Photo" onclick="openModal(this)">
</div>
</div>
</section>
</main>
<footer>
<p>© 2023 African Students Association</p>
</footer>
<script src="script.js"></script>
<script src="mobile.js"></script>
</body>
</html>