Files
Web_Dev_Project/project.html

112 lines
5.0 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Fonts-->
<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=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
<!--End Fonts-->
<link rel="stylesheet" href="css/projectStyle.css">
<title>Lew's Portfolio</title>
</head>
<body>
<header>
<div class="nav-bar">
<a href="index.html"><img class ="nav-logo" src="./images/icons/logo.svg" alt="lew's logo" width="180" height="auto"></a>
<nav>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="projects">
<!--Project 1-->
<div class="project-card">
<a href="https://git.lewispricedev.com/Rapturate/SHiFT_Codes_Bot/releases/tag/R1" >
<div class="project-image">
<img src="./images/project_imgs/ToDoList Project.jpg" alt="Project 1 Image">
</div>
<div class="project-description">
<h2>Web Scraper/Discord Bot</h2>
<p>A web scraper and Discord bot that pulls codes to unlock special gear in Borderlands 4 when prompted by a user on Discord.</p>
</div>
</a>
</div>
<!--Project 2-->
<div class="project-card">
<a href="https://git.lewispricedev.com/Rapturate/To_Do_List/releases/tag/R1">
<div class="project-image">
<img src="./images/project_imgs/ToDoList Project.jpg" alt="Project 2 Image">
</div>
<div class="project-description">
<h2>To-Do List</h2>
<p>A modifiable To-Do list that allows for organization and scheduling based on priority, date, and category.</p>
</div>
</a>
</div>
<!--Project 3-->
<div class="project-card">
<a href="https://git.lewispricedev.com/Rapturate/API_Practice/releases/tag/R1">
<div class="project-image">
<img src="./images/project_imgs/api_practice.jpg" alt="API Practice Image">
</div>
<div class="project-description">
<h2>API Accessing Practice</h2>
<p>A program written in golang for accessing a public API website. This demonstrates my ability to access APIs and display and manipulate data retrieved.</p>
</div>
</a>
</div>
<!--Project 4-->
<div class="project-card">
<a href="https://git.lewispricedev.com/Rapturate/">
<div class="project-image">
<img src="./images/project_imgs/<place_holder>" alt="Graph Theory Image">
</div>
<div class="project-description">
<h2>Graph Theory: Flat Buffer</h2>
<p>A graph theory project optimized for a consistent memory usage graph. There should be no duplications of objects, only addition, growth, reduction, or deletion of objects.</p>
</div>
</a>
</div>
<!--Project 5-->
<div class="project-card">
<a href="https://git.lewispricedev.com/Rapturate/">
<div class="project-image">
<img src="./images/project_imgs/<Place_holder>" alt="Project Image">
</div>
<div class="project-description">
<h2>Project Place Holder</h2>
<p>Under Construction</p>
</div>
</a>
</div>
</section>
</main>
<footer>
<p>&copy; 2024 LewisPriceDev, All rights reserved.</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/lewis-price-a79185195/" target="_blank" aria-label="LinkedIn">
<img src="images/icons/linkedin-icon.svg" alt="">
</a>
<a class="mail-img" href="mailto:lewis.e.price@outlook.com">
<img src="./images/icons/mail_icon.svg" alt="lewis.price@outlook.com">
</a>
</div>
</footer>
</body>
</html>