Skip to content

Commit

Permalink
projects
Browse files Browse the repository at this point in the history
  • Loading branch information
That-Git committed May 4, 2024
1 parent 98d3138 commit be7331a
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h2><u>Level Select</u></h2>
<li><a href=20>20<sup>2</sup> Square</a></li>
<li><a href=50>50<sup>2</sup> Square</a></li>
<li><a href=100>100<sup>2</sup> Square</a></li>
<li><a href=/ConwaysGame>Our Other Project</a></li>
<li><a href=projects>Our Other Projects</a></li>
</ul>
<section>
</main>
Expand Down
56 changes: 56 additions & 0 deletions projects/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<html>
<head>
<title>Blind Maze Level Select</title>
<style>
body {
font-family: arial;
background-color: #45475a;
color: #cdd6f4;
display: flex;
align-items: center;
justify-content: center;
margin: 0px;
overflow: hidden;
}
section {
background-color: #1e1e2e;
color: #89b4fa;
border-radius: 20px;
padding: 30px;
padding-left: 40px;
padding-right: 40px;
padding-bottom: 5px;
margin: 5%;
}
h1, h2 {
text-align: center;
}
h1 {
font-size: 700%;
margin-bottom: 6%;
margin-top: 5%;
}
h2 {
font-size: 250%;
padding-bottom: 5%;
}
li {
padding: 2%;
font-size: 24px;
}
</style>
</head>
<body>
<main>
<header> <h1>Blind Maze</h1> </header>
<section>
<h2><u>Level Select</u></h2>
<ul>
<li><a href=/ConwaysGame>Conway's Game Of Life</a></li>
<li><a href=/Blind-Maze>Blind Maze</a></li>
<li><a href=/FlappySnake>Flappy Snake</a></li>
</ul>
<section>
</main>
</body>
</html>

0 comments on commit be7331a

Please sign in to comment.