Files
Web_Dev_Project/project.html
rapturate 63f40c4791 On branch main
Changes to be committed:
	modified:   css/indexStyle.css
	- Changed hero banner to be the proper color
	- Removed the gap between the header and the banner
	Deletions: images/
	- deleted:    images/facebook-icon.svg
	- deleted:    images/generic project photo.jpg
	- deleted:    images/generic_person.jfif
	- deleted:    images/hero background.jpg
	- deleted:    images/hero.jpg
	- deleted:    images/hero_superhero_dark.jpg
	- deleted:    images/hero_superhero_light.jpg
	- deleted:    images/instagram-icon.svg
	modified:   index.html
	-  new file:   images/mail_icon.svg
	modified:   project.html
	- Fixed consistency issues from index.html to project.html
	#
2026-02-26 15:23:40 +00:00

105 lines
4.4 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/Lew Header.svg" alt="lew's logo" width="180" height="auto"></a>
<nav>
<ul class="nav-links">
<li><a href="./project.html">Projects</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">
<div class="project-image">
<img src="./images/Lew's Images/Project 1jpg.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>
</div>
<!--Project 2-->
<div class="project-card">
<div class="project-image">
<img src="./images/Lew's Images/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>
</div>
<!--Project 3-->
<div class="project-card">
<div class="project-image">
<img src="./images/Lew's Images/Doubly Linked List.jpg" alt="Project 3 Image">
</div>
<div class="project-description">
<h2>Binary Search Tree</h2>
<p>A program that I wrote as a singly linked list then modified into a doubly linked list, and then modified into a binary search tree.</p>
</div>
</div>
<!--Project 4-->
<div class="project-card">
<div class="project-image">
<img src="./images/Lew's Images/Graph Theory Project.jpg" alt="Project 4 Image">
</div>
<div class="project-description">
<h2>Graph Theory Project</h2>
<p>An exploration of weighted graph theory using “Cities” and “Roads” as nodes and edges. Search functions include Breadth First, Depth First, and Dijkstra's.</p>
</div>
</div>
<!--Project 5-->
<div class="project-card">
<div class="project-image">
<img src="./images/Lew's Images/Find Median Sorted Array.jpg" alt="Project 5 Image">
</div>
<div class="project-description">
<h2>Median of Two Sorted Arrays LeetCode Hard</h2>
<p>Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.</p>
</div>
</div>
</section>
</main>
<footer>
<p>&copy; 2024 LewisPriceDev, All rights reserved.</p>
<div class="social-links">
<a class="mail-img" href="mailto:lewis.e.price@outlook.com">
<img src="./images/mail_icon.svg" alt="lewis.price@outlook.com">
</a>
<a href="https://www.linkedin.com/in/lewis-price-a79185195/" target="_blank" aria-label="LinkedIn">
<img src="images/linkedin-icon.svg" alt="">
</a>
</div>
</footer>
</body>
</html>