This commit is contained in:
ahaas25 2025-02-23 23:29:42 -05:00
commit 7d221ecd31
10 changed files with 267 additions and 0 deletions

5
README.md Normal file
View File

@ -0,0 +1,5 @@
# ahaas25.github.io
Personal website.
Visit https://ahaas25.github.io to view

BIN
assets/about-background.JPG Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

BIN
assets/background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

BIN
assets/background2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
assets/profile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
assets/typing-teacher.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

88
index.html Normal file
View File

@ -0,0 +1,88 @@
<!DOCTYPE html>
<html>
<head>
<title>Aidan Haas' Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="./assets/profile.png" class="fav-ico">
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">My Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<div class="section-inner">
<img src="./assets/profile.png" class="profile-img">
<div class="about-text">
<h1>Aidan Haas</h1>
<h3>About Me</h3>
<p>I'm a Computer Science student studying at the University of Maryland, College Park
<p>
<p>I've always had a passion for coding, and now I'm looking to make it my career!<br>
I have experience in MIPS Assembly, C, C#, C++, Java, Python, Ruby, Rust, SQL, XAML, HTML, CSS, and their
respective IDEs.<br></p>
</div>
</div>
</section>
<section id="projects">
<div class="section-inner">
<h2>My Projects</h2>
<h1>Typing-Test-C (2022)</h1>
<img src="./assets/typing-teacher.png" class="img">
<p>I wrote this program in C with the goals of clean code, good memory management, and learning C. <br>
Typing-Test-C is a terminal based program which uses the <em>ncurses</em> library. <br>
The program works by providing the user with a prompt of words, which they type as fast as they can.
<br>
Once completed, it prints the user's performance to the screen and saves the results locally, which
can be viewed in the Stats page.</p>
<a href="https://github.com/ahaas25/Typing-Test-C">The GitHub page for this project can be found
here</a>
<h1>Typing-Teacher (2021)</h1>
<video controls>
<source
src="https://user-images.githubusercontent.com/94150901/149820428-e1360f02-582d-47ca-a90f-3eaabd2d2a4a.mp4"
type="video/mp4">
</video>
<p>A program designed to improve user typing speed an accuracy. Written in Java using the AWT library
for graphics.</p>
<p>Object was demonstrating Java skills, learning AWT, and creating an intuitive user-interface. This
was written over my 2021 winter break.<br>
The program keeps track of each key and shows the user which keys take them the longest to press and
which they mis-type the most.</p>
<a href="https://github.com/ahaas25/Typing-Teacher">The GitHub page for this project can be found
here</a>
</div>
</section>
<section id="contact">
<div class="section-inner">
<h1>Contact Me</h1>
<div class="links">
<img src="https://linkedin.com/favicon.ico" class ="favicon">
<a href="https://www.linkedin.com/in/ahaas25/">LinkedIn</a>
<p></p>
<img src="https://github.com/favicon.ico" class ="favicon">
<a href="https://github.com/ahaas25">GitHub</a>
</div>
</div>
</section>
</main>
<footer>
<p>HTML Made by Aidan Haas</p>
<p>Background Photos by Aidan Haas</p>
<p>Website Hosted by GitHub</p>
</footer>
</body>
</html>

33
services.html Normal file
View File

@ -0,0 +1,33 @@
<head>
<title>Aidan Haas' Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="./assets/profile.png" class="fav-ico">
<nav>
<ul>
<li><a href="#services">Services</a></li>
</ul>
</nav>
</header>
<main>
<section id="services">
<div class="section-inner">
<div class="about-text">
<h3>Services Running on This Server</h3>
<a href="redacted">Nextcloud - Cloud Server</a>
<p></p>
<a href="redacted">Jellyfin - Media Server</a>
<p></p>
<a href="redacted">Photoprism - Photo Server</a>
</div>
</div>
</section>
</body>
</html>

141
style.css Normal file
View File

@ -0,0 +1,141 @@
body {
margin: 0;
margin-top: 50px;
}
header {
display: flex;
position: fixed;
top: 0;
left: 0;
right: 0;
height: 50px;
line-height: 50px;
background-color: aliceblue;
font-family: Arial, Helvetica, sans-serif;
}
header * {
display: inline;
height: 50px;
}
header ul {
padding: 0;
}
header li {
margin-left: 20px;
}
section {
height: 100vh;
border: 0px solid black;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.section-inner {
font-size: 1.5em;
border-radius: 25px;
padding: 25px;
background-color: rgba(255, 255, 255, .80);
width: 65%;
font-family: Arial, Helvetica, sans-serif;
}
#projects {
height: 2160px;
}
.about-text {
padding: 0px;
}
#about .profile-img {
width: 300px;
border-radius: 50%;
}
#about h1 {
font-size: 3em;
}
section h2 {
font-size: 2.5em;
}
section h3 {
font-size: 1.5em;
}
header a {
text-decoration: none;
color: black;
}
footer {
text-align: center;
padding: 50px;
}
#about {
background-size: cover;
background-position: middle;
background-image: url('./assets/about-background.JPG');
}
#services {
background-size: cover;
background-position: middle;
background-image: url('./assets/jfvalois_burrard_inlet.jpg');
}
#projects {
background-size: cover;
background-position: middle;
background-image: url('./assets/background.jpg');
}
#contact {
background-size: cover;
background-position: 75%;
background-image: url('./assets/background2.jpg');
}
.img {
width:67%;
}
.favicon {
height: 1em;
}
a:link {
text-decoration: none;
color: blue;
font-weight: bold;
}
a:visited {
text-decoration: none;
color: blue;
font-weight: bold;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}