minor updates including fixing the gap between the hero banner and the nav-bar, correcting the image locations for the linkin and mail icons for the projects page, and removing the facebook and instagram links.

This commit is contained in:
2026-03-23 11:57:57 +00:00
parent 4238306621
commit d3d83f586c
15 changed files with 59 additions and 61 deletions

View File

@@ -15,7 +15,7 @@
<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>
<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>
@@ -30,9 +30,9 @@
<!--Project 1-->
<div class="project-card">
<a href="https://git.lewispricedev.com/Rapturate/SHiFT_Codes_Bot/releases/tag/R1">
<a href="https://git.lewispricedev.com/Rapturate/SHiFT_Codes_Bot/releases/tag/R1" style="text-decoration: none;">
<div class="project-image">
<img src="./images/Lew's Images/Project 1jpg.jpg" alt="Project 1 Image">
<img src="./images/project_imgs/Project1.jpg" alt="Project 1 Image">
</div>
<div class="project-description">
<h2>Web Scraper/Discord Bot</h2>
@@ -43,46 +43,54 @@
<!--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>
<a href="https://git.lewispricedev.com/Rapturate/To_Do_List/releases/tag/R1" style="text-decoration: none;">
<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">
<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>
<a href="https://git.lewispricedev.com/Rapturate/To_Do_List/releases/tag/R1" style="text-decoration: none;">
<div class="project-image">
<img src="./images/project_imgs/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>
</a>
</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>
<a href="https://git.lewispricedev.com/Rapturate/To_Do_List/releases/tag/R1" style="text-decoration: none;">
<div class="project-image">
<img src="./images/project_imgs/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>
</a>
</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>
<a href="https://git.lewispricedev.com/Rapturate/To_Do_List/releases/tag/R1" style="text-decoration: none;">
<div class="project-image">
<img src="./images/project_imgs/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>
</a>
</div>
</section>
@@ -92,15 +100,12 @@
<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="">
<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>