-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjects.html
111 lines (104 loc) · 5.45 KB
/
Projects.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projects - Dunnatello</title>
<link rel="stylesheet" href="css/site.css" />
<link rel="stylesheet" href="css/projects.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<nav class="navbar">
<div class="container navbar-content">
<a class="navbar-brand" href="index.html">
<img src="images/Dunnatello Icon.png" alt="Dunnatello" />
Dunnatello
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="Projects.html">Projects</a>
<a href="About.html">About</a>
</div>
</div>
</nav>
<main class="main-content">
<div class="container">
<h1 class="page-title">🚀 Projects</h1>
<!-- XR Training Simulation -->
<div class="project-card">
<video autoplay muted loop class="project-video">
<source src="videos/Occlusion Culling.mp4" type="video/mp4">
</video>
<div class="project-content">
<h2 class="project-title">XR Training Simulation for Teacher Education</h2>
<img src="images/XRSimulationLogo.png" alt="XR Simulation" class="project-logo">
<p class="project-description">A classroom de-escalation training simulation software designed for my senior capstone project.
This project features advanced animation systems and complex narrative design.</p>
<div class="project-links">
<a href="Projects/XRSimulation.html" class="button">📃 Details</a>
</div>
</div>
</div>
<!-- Tropical Tac Toe -->
<div class="project-card">
<video autoplay muted loop class="project-video">
<source src="videos/Tropical Tac Toe.mp4" type="video/mp4">
</video>
<div class="project-content">
<h2 class="project-title">Tropical Tac Toe</h2>
<img src="images/TropicalTacToeCover.png" style="border-radius: 25%;" alt="Tropical Tac Toe" class="project-logo">
<p class="project-description">A small project that I developed over 4 days to demonstrate the Minimax AI algorithm in a Unity game.</p>
<div class="project-links">
<a href="https://github.com/Dunnatello/TropicalTacToe" class="button">🤖 Repository</a>
<a href="https://dunnatello.itch.io/tropicaltactoe" class="button">🎮 Itch.io</a>
</div>
</div>
</div>
<!-- Asteroid Crashers -->
<div class="project-card">
<video autoplay muted loop class="project-video">
<source src="videos/Asteroid Crashers Background.mp4" type="video/mp4">
</video>
<div class="project-content">
<h2 class="project-title">Asteroid Crashers</h2>
<img src="images/AsteroidCrashersIcon.png" alt="Asteroid Crashers" class="project-logo">
<p class="project-description">A game designed for my Secure Software Engineering university course demonstrating how an anti-cheat system can be implemented into a Unity game.</p>
<div class="project-links">
<a href="https://github.com/Dunnatello/AsteroidCrashers/" class="button">🤖 Repository</a>
</div>
</div>
</div>
<!-- Visions -->
<div class="project-card">
<img src="images/Visions Garden.png" class="project-video" />
<div class="project-content">
<h2 class="project-title">Visions</h2>
<img src="images/Visions icon.png" alt="Visions" class="project-logo">
<p class="project-description">A game designed for my Advanced Game & Simulation Development course demonstrating ballistic weapon physics in an endless zombie shooter Unity game.</p>
<div class="project-links">
<a href="https://github.com/Dunnatello-DifferentFusion/Visions" class="button">🤖 Repository</a>
</div>
</div>
</div>
<!-- Burn it Up -->
<div class="project-card">
<img src="images/BurnItUpWebsiteGraphic.png" class="project-video" />
<div class="project-content">
<h2 class="project-title">Burn it Up!</h2>
<img src="images/BurnItUpIcon.png" alt="Burn it Up" class="project-logo">
<p class="project-description">A weight loss app designed for my Software Engineering Principles course project implemented in Solar2D/Lua.</p>
<div class="project-links">
<a href="https://github.com/Dunnatello/BurnItUp" class="button">🤖 Repository</a>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
© 2024 - Dunnatello - <a href="About.html">About</a>
</div>
</footer>
</body>
</html>