You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PersonalWebsite_Static/index.html

92 lines
3.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="Jake Cover's Homepage" name="description">
<title>Jake Cover</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/masonry.css">
</head>
<body>
<header class="header">
<a href="index.html" class="name">Jake Cover</a>
<div class="header-right">
<a class="active" href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
<a href="resume.html">Resume</a>
<a href="https://github.com/JakeCover">GitHub</a>
</div>
</header>
<div class="page">
<div class="grid">
<!--Distest-->
<div class="grid-item grid-item--tall4">
Distest <br>
One of my favorite Python projects, my attempt at implementing a test suite for discord bots.
</div>
<!--CodeDay-->
<div class="grid-item grid-item--image">
<img class="grid-img" src="images/codedaysd.png" alt="CodeDay SD Logo" width="230" height="230">
<div class="service-wrapper-inner title">
<h2>CodeDay</h2>
<div class="description">
<p>
CodeDay, an event by SRND, is a beginner-friendly 24 hour event for students that challenges attendees to create a game or an app.<br>
I served as the Regional Manager for CodeDay San Diego for one year.
</p>
</div>
</div>
<div class="service-overlay title"></div>
</div>
<!--SRND-->
<div class="grid-item grid-item--image">
<img src="images/codeday-notext-color.svg" alt="Redish Heart, SRND Logo" width="230" height="230">
<div class="service-wrapper-inner title">
<h2>SRND</h2>
<div class="description">
<p>SRND is an educational nonprofit that works to provide CS education to high school and college students and to increase diversity in tech.</p>
</div>
</div>
<div class="service-overlay title"></div>
</div>
<!--ScoreSaver Installer-->
<div class="grid-item">
ScoreSaber Installer
</div>
<!--Foresight-->
<div class="grid-item grid-item--image">
<img src="images/foresightsports.png" alt="ForeSight Sports Logo0" width="480">
<div class="service-wrapper-inner notitle">
<div class="description">
<p>SRND is an educational nonprofit that works to provide CS education to high school and college students and to increase diversity in tech.</p>
</div>
</div>
<div class="service-overlay notitle"></div>
</div>
<!--ReplyBot-->
<div class="grid-item grid-item--tall3">ReplyBot</div>
</div>
</div>
<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script src="scripts/masonry_conf.js"></script>
<script src="https://code.jquery.com/jquery-3.5.0.min.js"></script>
<script>
$(".grid-item").hover(
function () {
$(this).siblings().addClass('blur-me')
$(this).siblings().removeClass('unblur-me')
},
function () {
$(this).siblings().removeClass('blur-me')
$(this).siblings().addClass('unblur-me')
}
)
</script>
</body>
</html>