Files
Web_Dev_Project/index.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

129 lines
6.7 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&display=swap" rel="stylesheet">
<!--End Fonts-->
<link rel="stylesheet" href="css/indexStyle.css">
<title>Lewis Price</title>
<link rel="icon" type="image/svg+xml" href="./images/Lew Header icon.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>
<nav>
<ul class="nav-links">
<li><a href="./project.html">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="hero">
<img class="hero-img" src="./images/Lew's Images/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>
<p>For all current projects please go to:
<br><a href="https://git.lewispricedev.com" alt="git.lewispricedev.com">git.lewispricedev.com</a>.</p>
<a href="#contact" class="cta-button">Get In Touch</a>
</div>
</section>
<section class="about-section">
<h2>About Me</h2>
<p>In general, my main focus in software development is solving problems. I learn what is needed to solve the problem I face. This includes learning a language, framework, and/or system that is best suited to fit my needs. While I am very confident in C++, Java, and Golang specifically, I have dabbled in Flutter and Dart for a full stack development project, REACT, Docker, and other systems to solve various problems.
<br>
<br>
I have been interested in computers and programming from a very young age. I started with HTML in 2008 in school where a friend and I found the process of writing HTML facinating. I quickly dove deeper into the world of programming where I began learning Java. At the time, Minecraft Beta was just starting to become popular. I would practice development and engineering skills by writing mods for Minecraft. While I never wrote anything of actual value to the game (I would just play around with changing aspects for fun), analyzing and writing Java taught me the ins and outs of the object-oriented world where I started to branch out into other languages. I started to learn more about algorithms and systems while learning C++. Developing my understanding webhosting and servers with Golang and JavaScript. I am now comfortable writing programs in C, C++, Java, JavaScript, HTML, CSS, and Golang. In addition, I am comfortable working with SQL databases, UML diagraming, and MongoDB.
<br>
<br>
Learning in never an end goal, it's a never ending process that I will continue for the rest of my life.
</p>
</section>
<section class="list-all-projects">
<h2>Personal Projects</h2>
<div id="projects">
<div class="project-box">
<img src="./images/Lew's Images/Project 1jpg.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">
<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">
<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">
<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">
<div class="proj-text">
<h3>Median of Two Sorted Arrays</h3>
<p>- Golang</p>
</div>
</div>
</div>
</section>
<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">
</a>
<a class="mail-img" href="mailto:lewis.e.price@outlook.com">
<img src="./images/mail_icon.svg" alt="lewis.price@outlook.com">
</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/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">
</a>
</div>
</footer>
</body>
</html>