-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (123 loc) · 5.1 KB
/
index.html
File metadata and controls
146 lines (123 loc) · 5.1 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!-- Assoc. of Cyber Engineers Website -->
<!-- Currently lacking another background for the initial header. -->
<!-- Most of the JS used is just bootstrap, which I link to below. -->
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<!-- Beginning of Bootstrap imports -->
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- My CSS that I have been working on -->
<link rel="stylesheet" href="./src/custom/main.css">
<!-- Icon that we never put :) -->
<link rel="shortcut icon" type="image/x-icon" href="./img/logos/ACE Color Mini.png">
<title>ACE</title>
</head>
<body>
<!-- Top Navigation Bar -->
<div class="nav">
<div class="container">
<ul class="pull-left">
<li><a href="./index.html" style="color:black;"><u>Home</u></a></li>
<li><a href="./tools.html">Tools</a></li>
</ul>
<ul class="pull-right">
<li><a href="./team.html">The Team</a></li>
<li><a href="./resources.html">Resources</a></li>
</ul>
</div>
</div>
<!--Initial Header-->
<div class="jumbotron">
<div class="container">
<h1>The Association of Cyber Engineers</h1>
<div class="shade"></div>
<p>
The Association of Cyber Engineers is
an organization at Louisiana Tech that promotes the field of Cyber Engineering.
We strive for a hands-on method of learning so that students can gain a solid understanding
of the dynamic world of cybersecurity.
</p>
</div>
</div>
<!--Main Informational Content-->
<div class="learn-more">
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Who We Are</h3>
<p>
The Association of Cyber Engineers (ACE) is the first organization of its kind,
helping students not only learn about the fundamentals of cyber security, but also providing a
platform and professional connections for members to use to excel their
college career. ACE welcomes all students - from Engineering to Business to Education.
We strive to help everyone understand more about Cyber Engineering and how everyone has a
role in cyber security.
</p>
</div>
<div class="col-md-4">
<h3>What We Do</h3>
<p>
We believe that you learn best in a hands-on environment, so we work hard
to provide a dynamic learning experience. We give you the tools to learn
and provide a platform for knowledge. We go over a variety of cybersecurity-related
topics such as hacking, cryptography, forensics, and exploitation. In addition to
these topics, ACE members are able to make connections with other students who
share similar interests along with professionals in the Cyber Engineering and
cybersecurity fields.
</p>
</div>
<div class="col-md-4">
<h3>Where To Find Us</h3>
<p>
We have meetings every Monday in University Hall 111 at 6:00PM. You can contact us at
<a href="mailto:acecoes@latech.edu" target="_top">acecoes@latech.edu</a> or in our
<a href="https://discord.com/invite/RAyhGjeQnc" target="_blank"
rel="noopener noreferrer">Discord</a>.
Don't forget to follow us on <a href="https://twitter.com/ACE_LaTech" target="_blank"
rel="noopener noreferrer">Twitter</a>!
</p>
</div>
</div>
</div>
</div>
<!-- <div class="parallax_1"></div> -->
<div class='information-panel'>
<div class='footerText'>
<div class="container">
<div class="footerContainer">
<p>Contact Us: <a href="mailto:acecoes@latech.edu">acecoes@latech.edu</a></p>
<!-- Thumbnails -->
<div class="centered">
<div class="row">
<a href="https://discord.com/invite/RAyhGjeQnc" target="_blank" rel="noopener noreferrer">
<!-- Discord-->
<i class="fa fa-discord fa-2x" aria-hidden="true">Discord</i>
</a>
<a href="https://twitter.com/@ACE_LaTech" target="_blank" rel="noopener noreferrer">
<!-- Twitter -->
<i class="fa fa-twitter fa-2x" aria-hidden="true">Twitter</i>
</a>
<a href="https://github.com/acecoes" target="_blank" rel="noopener noreferrer">
<!-- GitHub -->
<i class="fa fa-github fa-2x" aria-hidden="true">GitHub</i>
</a>
</div>
</div>
<p>Website for The Association of Cyber Engineers -- Louisiana Tech University -- 2021</p>
</div>
</div>
</div>
</div>
</body>
</html>