-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware_projects.html
More file actions
58 lines (54 loc) · 2.38 KB
/
Copy pathsoftware_projects.html
File metadata and controls
58 lines (54 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emmet Larson</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Emmet Larson</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="software_projects.html">Software Projects</a></li>
<li><a href="game_projects.html">Game Projects</a></li>
<li><a href="hardware_projects.html">Hardware Projects</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Sofware Projects</h2>
<h4>Click the name to learn more about the project!</h4>
<div class="about-container">
<div class="text-content">
<h3><a href="Project_Pages/cs320_info.html">CS320 Team & Individual Projects</a></h3>
<p>My team designed a web application used to log and analyze data taken from bowling matches.</p>
<p>For my individual project, I used the <a href="https://docs.monogame.net/">Monogame Framework</a> to code a game/game engine using C#.</p>
</div>
<img src="Images/BowlingBall.png" alt="Example Image" class="profile-image">
</div>
<div class="about-container">
<img src="Images/math-images.png" alt="Example Image" class="profile-image">
<div class="text-content">
<h3><a href="Project_Pages/math-ide.html">Math IDE</a></h3>
<p>Coded a programming environment to perform operations on matricies.</p>
</div>
</div>
<div class="about-container">
<div class="text-content">
<h3><a href="Project_Pages/sort-visualizer.html">Sort Visualizer</a></h3>
<p>Designed a desktop application that visualizes various sorting algorithms.</p>
</div>
<img src="Images/SortVisualizer.png" alt="Example Image" class="profile-image">
</div>
</section>
</main>
<footer>
<p>© 2025 Emmet Larson. All rights reserved.</p>
</footer>
</body>
</html>