-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
executable file
·44 lines (43 loc) · 2.24 KB
/
service.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Service Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" id="main-stylesheet" href="service/service.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
</head>
<body>
<script src="home/script.js"></script>
<header class="fixed-top">
<div class="dropdown">
<button class="dropdown2" onclick="location.href='index.html'">Home</button>
<div class="dropdown-content">
<a onclick="location.href='qualifications.html'">Qualifications</a>
<a onclick="location.href='portfolio.html'">Portfolio</a>
<!-- <a onclick="location.href='chat.html'">AI</a> -->
</div>
</div>
<p class="top">About Me</p>
<label class="switch">
<!-- <input type="checkbox" id="toggle-css">
<span class="slider round"></span> -->
</label>
</header>
<div class="service-box">
<div class="project">
<div class="text-overlay-container">
<div class="text-section">
<p class="text">
Hey! My name is Javier 'Javi', I am an Honors Computer Science student at Texas A&M University, with a minor in Mathematics and Game Design and Development. I am passionate about Computer-Human Interaction and Artificial Intelligence, with a focus on the intersection of the two. I am also the tech lead of the Texas A&M Cyber Security Club, where I maintain the website and backend of the overall club functions.
<br>
<br>
During my time at A&M I have also been privileged to work as an undergraduate teaching assistant for CSCE 120, which has allowed me to gain invaluable leadership skills by allowing me to teach fellow students in weekly labs, while also aiding them during office hours to increase their understanding of Computer Science concepts such as memory management, debugging, and basic data structures.
</p>
</div>
</div>
</div>
</div>
</body>
</html>