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

@@ -11,12 +11,12 @@
<link rel="stylesheet" href="css/indexStyle.css">
<title>Lewis Price</title>
<link rel="icon" type="image/svg+xml" href="./images/Lew Header icon.svg">
<link rel="icon" type="image/svg+xml" href="./images/icons/favicon.svg">
</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>
<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="./project.html">Projects</a></li>
@@ -28,7 +28,7 @@
<main>
<section id="hero">
<img class="hero-img" src="./images/Lew's Images/Lew.JPG" alt="profile picture">
<img class="hero-img" src="./images/profile_img/Lew.JPG" alt="profile picture">
<div class="hero-text">
<h1>Lewis Price</h1>
<p>This site is a live document that will be changing as I learn more and complete more projects.</p>
@@ -54,35 +54,35 @@
<h2>Personal Projects</h2>
<div id="projects">
<div class="project-box">
<img src="./images/Lew's Images/Project 1jpg.jpg" alt="project picture">
<img src="./images/project_imgs/Project1.jpg" alt="project picture">
<div class="proj-text">
<h3>Web Scraper/Discord Bot</h3>
<p>- Golang</p>
</div>
</div>
<div class="project-box">
<img src="./images/Lew's Images/ToDoList Project.jpg" alt="project picture">
<img src="./images/project_imgs/ToDoList Project.jpg" alt="project picture">
<div class="proj-text">
<h3>To-Do List</h3>
<p>- Java</p>
</div>
</div>
<div class="project-box">
<img src="./images/Lew's Images/Doubly Linked List.jpg" alt="project picture">
<img src="./images/project_imgs/Doubly Linked List.jpg" alt="project picture">
<div class="proj-text">
<h3>Binary Search Tree</h3>
<p>- C++</p>
</div>
</div>
<div class="project-box">
<img src="./images/Lew's Images/Graph Theory Project.jpg" alt="project picture">
<img src="./images/project_imgs/Graph Theory Project.jpg" alt="project picture">
<div class="proj-text">
<h3>Graph Theory Project</h3>
<p>- C++</p>
</div>
</div>
<div class="project-box">
<img src="./images/Lew's Images/Find Median Sorted Array.jpg" alt="project picture">
<img src="./images/project_imgs/Find Median Sorted Array.jpg" alt="project picture">
<div class="proj-text">
<h3>Median of Two Sorted Arrays</h3>
<p>- Golang</p>
@@ -94,17 +94,11 @@
<section id="contact">
<h2>Contact Me</h2>
<div id="socials">
<a class="social-img" href="https://www.instagram.com/ohbejoyfulbags/" target="_blank">
<img src="./images/instagram-icon.svg" alt="Instagram">
</a>
<a class="social-img" href="https://www.facebook.com/lewprice140" target="_blank">
<img src="./images/facebook-icon.svg" alt="Facebook">
</a>
<a class="social-img" href="https://www.linkedin.com/in/lewis-price-a79185195/" target="_blank">
<img src="images/linkedin-icon.svg" alt="LinkedIn">
<img src="images/icons/linkedin-icon.svg" alt="LinkedIn">
</a>
<a class="mail-img" href="mailto:lewis.e.price@outlook.com">
<img src="./images/mail_icon.svg" alt="lewis.price@outlook.com">
<img src="./images/icons/mail_icon.svg" alt="lewis.price@outlook.com">
</a>
</div>
</section>
@@ -115,11 +109,11 @@
<div class="social-links">
<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/mail_icon.svg" alt="lewis.price@outlook.com">
<img src="./images/icons/mail_icon.svg" alt="lewis.price@outlook.com">
</a>
</div>