Create code editor and run code with subprocess package
This commit is contained in:
145
webpages/buffteks.html
Normal file
145
webpages/buffteks.html
Normal file
@@ -0,0 +1,145 @@
|
||||
<!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 {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.faculty img {
|
||||
height: 300px;
|
||||
width: 200px;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
.faculty-info {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.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 companies 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">
|
||||
<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>
|
||||
CC 208D<br>
|
||||
|
||||
<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/babb-jeffry-22.png" alt="Dr. Jeffry Babb">
|
||||
<div class="faculty-info">
|
||||
<strong>Dr. Jeffry Babb</strong><br>
|
||||
CC 214E<br>
|
||||
|
||||
<a href="mailto:jbabb@wtamu.edu">jbabb@wtamu.edu</a>
|
||||
</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>
|
||||
Reference in New Issue
Block a user