Portfolio/pages/AllProjects.html
Nye Evans 196942db91 fixes minor css issues and adds text to project gallery
-fixes text being invisible or incorrect colour on gallery links
-adds text to gallery
2021-09-24 14:49:01 +01:00

88 lines
No EOL
4.1 KiB
HTML

<!doctype html>
<HTML>
<header>
<link rel = "stylesheet" href = "basic.css">
<link rel = "stylesheet" href = "AllProjects.css">
<link rel = "stylesheet" href = "effects.css">
<link rel = "icon" href = "..\images\Icon.ico">
<meta charset="UTF-8">
<title>Nye Evans Portfolio</title>
</header>
<body>
<h1>All Projects</h1>
<h2>click to find out more</h2>
<a href = "./gallery/aardvark-work/aardvark-work.html" class = "galleryLink">
<div class = "item">
<img src = "./gallery/aardvark-work/projectHeaderImage.png" class = "orangeBorder projectThumbnail"></img>
<div class = "itemText">
<h3>Aardvark XR</h3>
<div>
An open source project, this was a platform that would run small web-based apps over the top of other virtual reality programs, like a form of augmented reality within vr.
I helped produce apps, known as "gadgets" for the platform and created small additions to the main functionality of the program, adding a gesture system to allow the menu to be opened through hand gestures
</div>
</div>
</div>
</a>
<a href = "./gallery/epq-project/epq-project.html" class = "galleryLink">
<div class = "item">
<img src = "./gallery/epq-project/projectHeaderImage.png" class = "orangeBorder projectThumbnail"></img>
<div class = "itemText">
<h3>Vr interaction system</h3>
<div>
Done as a final project for my Extended Project Qualification (EPQ) and my first VR project, this was a program made in unreal engine that allowed users to grab and interact with physics based objects in VR.
</div>
</div>
</div>
</a>
<a href = "./gallery/mind-map/mind-map.html" class = "galleryLink">
<div class = "item">
<img src = "./gallery/mind-map/projectHeaderImage.png" class = "orangeBorder projectThumbnail"></img>
<div class = "itemText">
<h3>Mind map tool</h3>
<div>
The final project for my A-levels, this was a unity based tool that allowed the user to create mindmaps using a varied set of tools and a fully functional undo/redo system.
</div>
</div>
</div>
</a>
<a href = "./gallery/cat-tower-defence/cat-tower-defence.html" class = "galleryLink">
<div class = "item">
<img src = "./gallery/cat-tower-defence/projectHeaderImage.png" class = "orangeBorder projectThumbnail"></img>
<div class = "itemText">
<h3>Cat Tower Defence</h3>
<div>
Cat Tower Defence was a game made with a small group of friends in order to teach ourselves pythons "pygame" library, this was done over the course of a month or so and included some extra
modding space, allowing users to make their own levels. This was one of my first projects with a GUI.
</div>
</div>
</div>
</a>
<div id = "backButtonContainer">
<a onclick = "history.back()" class = "backButton"> <-Back to main page</a>
</div>
<div id = "socialBar" style = "margin-top: 3vh;">
<a href = "https://twitter.com/Wi__Ro" target="_blank">Twitter</a>
&NonBreakingSpace;
<a href="mailto:WillowRo@outlook.com" target="_blank">Email</a>
&NonBreakingSpace;
<a href="https://github.com/Wil-Ro" target="_blank">Github</a>
&NonBreakingSpace;
<a href = "https://dev.to/willowro" target="_blank">Dev.to</a>
&NonBreakingSpace;
<a href = "./pages/CVPage.html">CV</a>
</div>
</body>
</HTML>