-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathabout.html
114 lines (106 loc) · 5.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - 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="https://github.com/TXSTDOTEXE" target="_blank">GitHub</a></li>
</ul>
</div>
</nav>
<div class="container about-section">
<!-- Introduction -->
<h1>About Us</h1>
<p>Welcome to TXST.EXE! We are a community of students dedicated to fostering learning, collaboration, and career readiness in the field of Computer Science. </p>
<!-- Mission Statement -->
<h2>Our Mission</h2>
<p>Our mission is to give students the skills and knowledge necessary to succeed in the field of Computer Science, through hands-on projects, collaborative learning, and professional development opportunities.</p>
<!-- Meet the Team -->
<h2>Meet the Team</h2>
<div class="row">
<div class="col-md-3 team-member">
<img src="images/lorenz.jpg" alt="Lorenz">
<h5>Lorenz De Robles</h5>
<p>President</p>
<p>Lorenz is a junior majoring in Computer Science with a passion for Computer Vision and Automation.</p>
</div>
<div class="col-md-3 team-member">
<img src="images/wyatt.jpg" alt="Wyatt">
<h5>Wyatt Mahoney</h5>
<p>Vice President</p>
<p>Wyatt is a senior majoring in Computer Science and enjoys all things Math.</p>
</div>
<div class="col-md-3 team-member">
<img src="images/james.jpg" alt="James">
<h5>James Cowley</h5>
<p>Secretary</p>
<p>James is a senior majoring in Computer Science and is interested in low-level programming.</p>
</div>
<div class="col-md-3 team-member">
<img src="images/mark.jpg" alt="Mark">
<h5>Mark Evola</h5>
<p>Treasurer</p>
<p>Mark is a sophomore majoring in Computer Science who likes web development.</p>
</div>
</div>
<!-- Club Activities -->
<h2>Our Activities</h2>
<p>We organize a variety of activities including weekly coding workshops, guest lectures from industry professionals, annual hackathons, and collaborative projects. These activities are designed to enhance our members' skills and foster a strong community spirit.</p>
<!-- Membership Information -->
<h2>Join Us</h2>
<p>We welcome all students interested in computer science, regardless of their level of experience. See our membership page for requirements to join.</p>
<!-- Values and Culture -->
<h2>Our Values</h2>
<p>We are committed to creating an inclusive and supportive environment where members can learn, collaborate, and innovate. Our core values include:</p>
<ul>
<li>Inclusivity</li>
<li>Collaboration</li>
<li>Innovation</li>
<li>Professional Development</li>
</ul>
<!-- Partnerships and Sponsors -->
<h2>Our Partners</h2>
<p>We are proud to collaborate with a variety of organizations and companies that support our mission.</p>
<div class="row">
<div class="col-md-4">
<img src="images/USAA-Logo.png" width="250" height="250">
</div>
<div class="col-md-4">
<img src="images/Charles-Schwab-logo.png" width="250" height="250">
</div>
<div class="col-md-4">
<img src="images/career-logo.jpg" width="250" height="250">
</div>
</div>
<div class="container">
<!-- Contact Information -->
<h2>Contact Us</h2>
<p>If you have any questions or would like more information about our club, feel free to contact us at <a href="mailto:txst.exe@gmail.com">txst.exe@email.com</a>.</p>
</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>