-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmembership.html
108 lines (100 loc) · 5.66 KB
/
membership.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Membership - TXST.EXE</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="container-fluid">
<div class="navbar-header">
<a href="index.html"><img src="images/exelogo.jpg" alt="logo" width="50" height="50"></a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="about.html">About Us</a></li>
<li class="active"><a href="events.html">Events</a></li>
<li class="active"><a href="membership.html">Membership</a></li>
<li class="active"><a href="contact.html">Contact Us</a></li>
<li class="active"><a href="my_page.html">My Page</a></li>
<li class="active"><a href="https://github.com/TXSTDOTEXE" target="_blank">GitHub</a></li>
</ul>
</div>
</nav>
<div class="container membership-section">
<h1>Membership</h1>
<p>Welcome to .EXE! We are excited to have you join our community! Below you'll find information on how to become a member, the benefits of membership, and our requirements and fees.</p>
<strong>It is not a requirement to be a member to attend weekly meetings.</strong>
<h2>Benefits</h2>
<div class="row">
<div class="col-md-6 membership-benefit">
<img src="images/code-icon.png" alt="code icon">
<h4>Collaborative Projects</h4>
<p>Work on exciting projects with fellow members and gain hands-on experience.</p>
</div>
<div class="col-md-6 membership-benefit">
<img src="images/social-icon.png" alt="social icon">
<h4>Social Events</h4>
<p>Join us for biweekly social events to various fun locations to unwind and engage with fellow members in a casual setting.</p>
</div>
<div class="col-md-6 membership-benefit">
<img src="images/network-icon.png" alt="network icon">
<h4>Community and Networking</h4>
<p>Be part of a supportive community, make new friends, and build a professional network that lasts a lifetime.</p>
</div>
<div class="col-md-6 membership-benefit">
<img src="images/teacher-icon.png" alt="teacher icon">
<h4>Mentorship Opportunities</h4>
<p>Receive guidance from experienced members and industry professionals to help you achieve your goals.</p>
</div>
</div>
<div class="container">
<h2>Requirements</h2>
<p>Our club is open to students with an interest in computer science. Regardless of your skill level, we welcome you to join us. You only need to meet the University's basic requirements:</p>
<ul>
<li>Must be a Texas State Student</li>
<li>Must have a minimum GPA of 2.25</li>
</ul>
<b>You are still welcome to attend general meetings without meeting the above requirements.</b>
</div>
<div class="container">
<h2>Membership Dues</h2>
<p>To support our activities and events, we charge a nominal fee of <b>$20</b> per semester. This fee helps us cover costs for workshop and event materials, food for meetings, competition prizes, and other club activities.</p>
</div>
<div class="container">
<h2>How to Join</h2>
<ol class="membership-steps">
<li>
<strong>Attend a Meeting: </strong>
<p>Come to one of our weekly meetings to get to know us and learn about what we do.</p>
</li>
<li>
<strong>Fill Out the Membership Form: </strong>
<p>Complete our membership form which you can find <a href="https://forms.gle/nQouYfD1bFKyZdVL7">here</a>.</p>
</li>
<li>
<strong>Pay Membership Dues: </strong>
<p>Submit your membership dues online or in person at one of our meetings.</p>
</li>
<li>
<strong>Get Involved: </strong>
<p>Start participating in our events, projects, and meetings. Welcome to .EXE!</p>
</li>
</ol>
</div>
</div>
<div class="container-fluid footer">
<p>Connect with us!</p>
<div id="links">
<a href="https://www.instagram.com/txst.exe/" target="_blank"><img src="images/insta.png"></a>
<a href="https://twitter.com/txstateEXE" target="_blank"><img src="images/twitter.png"></a>
<a href="https://github.com/TXSTDOTEXE" target="_blank"><img src="images/github.png"></a>
<a href="https://discord.gg/ZsCY2quZJr" target="_blank"><img src="images/discord.png"></a>
</div>
</div>
</body>
</html>