164 lines
5.4 KiB
HTML
164 lines
5.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BuffTeks - Student Tech Club</title>
|
|
<style>
|
|
body {
|
|
font-family: Consolas, monospace;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
padding: 1rem 0;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.header-content {
|
|
background-color: #ffffff;
|
|
color: #450012;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-family: 'Arial Black', Gadget, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto 2rem;
|
|
padding: 1rem;
|
|
background-color: #fff;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h2 {
|
|
border-bottom: 2px solid #333;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
ul li {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.faculty-row {
|
|
display: flex;
|
|
justify-content: space-between; /* Add space between the items */
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.faculty {
|
|
text-align: center; /* Center the content */
|
|
flex: 1;
|
|
margin: 0 15px; /* Add horizontal margin between the faculty items */
|
|
}
|
|
|
|
.faculty img {
|
|
height: 210px;
|
|
width: 140px;
|
|
margin-bottom: 10px; /* Add space between the image and the information */
|
|
}
|
|
|
|
.faculty-info {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
|
|
.join {
|
|
text-align: center;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.join a {
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px 20px;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.join a:hover {
|
|
background-color: #555;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>BuffTeks Student Organization</h1>
|
|
<div class="header-content">
|
|
<p>Building Skills, Crafting Code, Bridging Communities</p>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<section>
|
|
<h2>Our Mission</h2>
|
|
<p>Empower members with advanced software development knowledge, foster new skills and technologies in a collaborative and engaging community.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Our Activities</h2>
|
|
<ul>
|
|
<li><strong>BuffTeks Event:</strong> Host competitions and hackathons that empower students to use classroom knowledge for real-world solutions.</li>
|
|
<li><strong>BuffTeks Project:</strong> Faculty-led coding projects to provide IT solutions and support to problems facing local communities as part of an experiential learning effort.</li>
|
|
<li><strong>BuffTeks Classroom:</strong> An open learning platform devoted to sharing knowledge of information technology including Python programming and web application development.</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Faculty Advisors</h2>
|
|
<div class="faculty-container">
|
|
|
|
<!-- Row with all three faculty members -->
|
|
<div class="faculty-row">
|
|
<div class="faculty">
|
|
<img src="https://www.wtamu.edu/_files/images/academics/college-business/headshots/babb-jeffry-22.png" alt="Dr. Jeffry Babb">
|
|
<div class="faculty-info">
|
|
<strong>Dr. Jeffry Babb</strong><br>
|
|
BuffTeks Founder<br>
|
|
<!-- Contact info -->
|
|
<!-- <a href="mailto:jbabb@wtamu.edu">jbabb@wtamu.edu</a> -->
|
|
</div>
|
|
</div>
|
|
|
|
<div class="faculty">
|
|
<img src="https://www.wtamu.edu/_files/images/academics/college-business/headshots/zhang-carl-22.png" alt="Dr. Carl Zhang">
|
|
<div class="faculty-info">
|
|
<strong>Dr. Carl Zhang</strong><br>
|
|
<!-- Contact info -->
|
|
<a href="mailto:czhang@wtamu.edu">czhang@wtamu.edu</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="faculty">
|
|
<img src="https://www.wtamu.edu/_files/images/academics/college-business/headshots/dana-kareem-22.png" alt="Mr. Kareem Dana">
|
|
<div class="faculty-info">
|
|
<strong>Mr. Kareem Dana</strong><br>
|
|
<a href="mailto:kdana@wtamu.edu">kdana@wtamu.edu</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<div class="join">
|
|
<h2>Join Us</h2>
|
|
<p>Please fill out the form below to register as a BuffTeks member.</p>
|
|
<a href="https://wtamuuw.az1.qualtrics.com/jfe/form/SV_2boQtKLCptO33HE" target="_blank">Click Here to Join Us</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|