Skip to content

Commit

Permalink
add web page
Browse files Browse the repository at this point in the history
  • Loading branch information
revolt3245 committed Nov 13, 2023
1 parent b44e91a commit f7f18d8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<body>
<div id="main menu">
<h1>Picross Solver</h1>
<button id="button_picross_solver">Picross Solver</button>
<button id="button_picross_game">Picross Game</button>
<button id="button_main_page" onclick="window.location.href='https://revolt3245.github.io/Picross-Solver'">Main Menu</button>
<button id="button_picross_solver" onclick="window.location.href='picross_solver.html'">Picross Solver</button>
<button id="button_picross_game" onclick="window.location.href='picross_game.html'">Picross Game</button>
<button id="button_main_page" onclick="window.location.href='https://revolt3245.github.io/Picross-Solver'">Main Page</button>
<script src="main.js"></script>
</div>
</body>
Expand Down
12 changes: 12 additions & 0 deletions web/picross_game.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>

<html>
<head>
<title>Main Menu of Picross Game</title>
</head>
<body>
<h1>Picross Game</h1>
<button onclick="window.location.href='index.html'">Go back</button>
<button onclick="window.location.href='https://revolt3245.github.io/Picross-Solver'">Main Page</button>
</body>
</html>
12 changes: 12 additions & 0 deletions web/picross_solver.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>

<html>
<head>
<title>Picross Solver</title>
</head>
<body>
<h1>Picross Solver</h1>
<button onclick="window.location.href='index.html'">Go Back</button>
<button onclick="window.location.href='https://revolt3245.github.io/Picross-Solver'">Main Page</button>
</body>
</html>

0 comments on commit f7f18d8

Please sign in to comment.