-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
85 lines (76 loc) · 5.56 KB
/
about.html
File metadata and controls
85 lines (76 loc) · 5.56 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/favicon.png">
<link rel="stylesheet" href="styles/butestrap.css">
<link rel="stylesheet" href="styles/default.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<title>About Us</title>
</head>
<body>
<header>
<a href="index.html">
<img id="logo" src="img/tech2gether_logo.png" alt="Tech2Gether Logo">
</a>
<nav>
<ul class="navbar">
<li><a class="btn" href="index.html">Home</a></li>
<li><a class="btn" href="about.html">About</a></li>
<li><a class="btn" href="sponsors.html">Sponsors</a></li>
<li><a class="btn" href="https://forms.office.com/r/vvpgTYGfmp">Join Us</a></li>
</ul>
</nav>
<div class="margin-auto timer">
<p class="timer-title dare">Next<br>Meeting</p>
<div class="timer-clock">
<p class="timer-days">00</p>
<p class="timer-hours">00</p>
<p class="timer-minutes">00</p>
<p class="timer-seconds">00</p>
</div>
</div>
</header>
<main class="text-center">
<section class="flex-container center-box margin-top-3 margin-bottom-3">
<div id="about" class="flex-container-80 box center-box flex-column">
<p class="font-extra-large dare margin-top-3">President</p>
<div class="box person">
<img src="img/portraits/willy_vanderpool.png" alt=" Willy Vanderpool Portrait">
<p class="font-large dare">Willy Vanderpool</p>
<p>Hello there! I'm Willy Vanderpool, an 18-year-old Computer Information Science student. My passion for programming started long before college, sparked by curiosity and a love for creating things from scratch. Over the years, I've gained experience with HTML, CSS, JavaScript, C#, Java, and Lua, and recently I've been diving deeper into modern frameworks such as React, TailwindCSS, and .NET MAUI. Outside of programming, some of my hobbies include drawing pixel art, playing videogames, and collecting Pokémon cards.</p>
<a class="btn" href="https://willy-v.com" target="_blank">Website</a>
<a class="btn" href="https://github.com/ItsMeWillyV" target="_blank">GitHub</a>
<a class="btn" href="https://www.linkedin.com/in/willy-vanderpool" target="_blank">LinkedIn</a>
</div>
<p class="font-extra-large dare margin-top-3">Vice President</p>
<div class="box person margin-bottom-3">
<img class="width-50" src="img/portraits/paul_bute.png" alt="Paul Bute Portrait">
<p class="font-large dare">Paul Bute</p>
<p>My name is Paul Bute, and I'm a CIS student at Ozark's Tech. I'm the current Vice President of Tech2Gether. My goals for the club this year are to boost engagement and engage students in programming challenges and competitions. As of the beginning of the Fall semester, it will be my 2nd year at Ozarks Tech. I'm mainly a Web Developer, with experience in C# ASP.NET apps, as well as JS & Vue. I enjoy learning new skills and exploring how problems can be solved in more than one way. I enjoy reading, gaming & baking in my free time. Before Ozarks Tech I was part of the workforce for 7 years. I have experience in warehouse picking, shipping & handling, management and customer service. I also spent four years in the hospitality industry, and a year as a Tower Technician doing structural modifications on cell phone towers.</p>
</div>
<p class="font-extra-large dare margin-top-3">Secretary</p>
<div class="box person margin-bottom-3">
<img class="width-50" src="img/portraits/laura_kirkpatrick.png" alt="Laura Kirkpatrick Portrait">
<p class="font-large dare">Laura Kirkpatrick</p>
<p>Hiya! My name is Laura, and I'm the Tech2Gether secretary for the 2025-2026 school year. I'm currently working on my Associate's degree in Computer Science at Ozarks Tech. I have enjoyed all that I've learned in my time at Ozarks Tech: Python, C#, .NET MAUI, Java, and Web Development. In my free time, I love building Magic: The Gathering decks, writing/playing Dungeons and Dragons with friends, and playing/building videogames. I'll be graduating in the Spring 2026 Semester (hopefully) so look out for officer nominations in the spring to get my job! I'm so excited to help Tech2Gether continue its outreach to students by providing fun educational, networking, and programming events to members and all Ozarks Tech students alike! It's going to be a fun year.</p>
</div>
<p class="font-extra-large dare margin-top-3">Treasurer</p>
<div class="box person margin-bottom-3">
<img class="width-50" src="img/portraits/diego_haro.png" alt="Diego Haro Portrait">
<p class="font-large dare">Diego Haro</p>
<p>Hi, I'm Diego.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="text-center">
<p>© 2025 Tech2Gether</p>
<p class="dare">Engaging Talks Networking Free Pizza</p>
</div>
</footer>
<script src="scripts/timer.js"></script>
</body>
</html>