forked from RGClary/ACM-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
73 lines (73 loc) · 2.43 KB
/
about.php
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
<!DOCTYPE html>
<html>
<head>
<?php
require('common/head-includes.php');
?>
<title>About Us | Association for Computing Machinery UTSA</title>
</head>
<body>
<?php
require('common/menu.php');
?>
<div id="content" class="container">
<div class="row">
<div class="col-sm-12">
<div class="row section-container">
<div class="col-sm-12">
<h1>
About ACM UTSA
</h1>
<p>
The Association for Computing Machinery at UTSA is dedicated
to giving members and students the opportunity to gain experience,
network, socialize, learn, and grow outside of the classroom in all fields
of technology and computing.
</p>
<p>
We are first and foremost an official UTSA student organization, an
official university chapter of the national <a href="http://www.acm.org">Association for Computing Machinery</a>, and a non-profit organization.
</p>
</div>
</div>
<div class="row section-container">
<div class="col-sm-12">
<h1>
Our History
</h1>
<p>
The UTSA chapter of ACM was founded by Danny Tsang and Kurt King in the Fall of 2015,
who saw the need for a student organization for nearly one thousand computer science
students. Since then, the chapter has grown at a remarkable pace into a huge organization
that provides a valuable social environment for students in computer science and other majors.
</p>
</div>
</div>
<div class="row section-container">
<div class="col-sm-12">
<h1>
What We Offer
</h1>
<p>
As UTSA's premier computer science student organization, ACM offers:
</p>
<ul>
<li>Career development and opportunities</li>
<li>Technical hands-on workshops on various technologies</li>
<li>Social events, hackathons, and competitions</li>
<li>A fun & welcoming atmosphere for all members</li>
</ul>
</div>
</div>
<div class="row section-container" id="about-page-tamuhacks-image">
<div class="col-sm-12">
</div>
</div>
</div>
</div>
</div>
<?php
require('common/footer.php');
?>
</body>
</html>