Gitea migration
This commit is contained in:
106
Project 1/project.html
Normal file
106
Project 1/project.html
Normal file
@@ -0,0 +1,106 @@
|
||||
<!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>© 2025 Group 18. All rights reserved.</p>
|
||||
<div class="social-links">
|
||||
<a href="https://www.instagram.com/lewcifer_the_great/" target="_blank" aria-label="Instagram">
|
||||
<img src="./images/instagram-icon.svg" alt="">
|
||||
</a>
|
||||
<a href="https://www.facebook.com/lewprice140" target="_blank" aria-label="Facebook">
|
||||
<img src="./images/facebook-icon.svg" alt="">
|
||||
</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>
|
||||
Reference in New Issue
Block a user