Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ExplodingCB authored Dec 17, 2021
1 parent 60cc19c commit e14b028
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,51 @@ <h1 style="color:black;font-size:50px;">HTML Unlocked</h1>
</html>


<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 50px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="snake.html" class="button">Play Snake</a>
</body>
</html>


<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 50px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="breakout.html" class="button">Play Breakout</a>
</body>
</html>

0 comments on commit e14b028

Please sign in to comment.