add links to project repos

This commit is contained in:
jheaps
2024-11-25 08:55:09 -07:00
parent f296ef8ae1
commit e203e1a6b8
2 changed files with 8 additions and 4 deletions
+4 -4
View File
@@ -19,7 +19,7 @@
<div id="WelcomeMessage"></div> <div id="WelcomeMessage"></div>
<div id="ProjectsBox"> <div id="ProjectsBox">
<div id="ChessProject" class="projectContainer"> <a id="ChessProject" class="projectContainer" target="_blank" href="https://github.com/JoshHeaps/OnlineChess">
<div class="displayBox diagonal-section-left"> <div class="displayBox diagonal-section-left">
<img id="ChessImage" class="projectImage projectImageLeft" src="/images/Chess.jpg" title="Chessboard"/> <img id="ChessImage" class="projectImage projectImageLeft" src="/images/Chess.jpg" title="Chessboard"/>
</div> </div>
@@ -29,9 +29,9 @@
As someone who loves chess, I wanted to create a chess game that I could play with my friends and family. This project is a work in progress, as currently it can only be played locally. It was built in C# on .NET 8.0, using winforms, because I like a challenge. I plan to add online multiplayer functionality in the future. As someone who loves chess, I wanted to create a chess game that I could play with my friends and family. This project is a work in progress, as currently it can only be played locally. It was built in C# on .NET 8.0, using winforms, because I like a challenge. I plan to add online multiplayer functionality in the future.
</p> </p>
</div> </div>
</div> </a>
<div id="CompilerProject" class="projectContainer"> <a id="CompilerProject" class="projectContainer" target="_blank" href="https://github.com/JoshHeaps/CILCompiler">
<div id="CompilerText" class="projectTextLeft"> <div id="CompilerText" class="projectTextLeft">
<h2 id="CompilerTitle" class="projectHeaderLeft projectHeader">Compiler</h2> <h2 id="CompilerTitle" class="projectHeaderLeft projectHeader">Compiler</h2>
<p id="CompilerDescription" class="projectDescriptionLeft projectDescription"> <p id="CompilerDescription" class="projectDescriptionLeft projectDescription">
@@ -41,7 +41,7 @@
<div class="displayBox diagonal-section-right"> <div class="displayBox diagonal-section-right">
<img id="CompilerImage" class="projectImage projectImageRight" src="/images/CompilerDemo.png" title="Compiler Input and Output"/> <img id="CompilerImage" class="projectImage projectImageRight" src="/images/CompilerDemo.png" title="Compiler Input and Output"/>
</div> </div>
</div> </a>
</div> </div>
</body> </body>
</html> </html>
+4
View File
@@ -14,3 +14,7 @@
width: 100vw; width: 100vw;
height: auto; height: auto;
} }
a {
text-decoration: none;
}