Skip to content

Commit

Permalink
Merge pull request #235 from saurabhsagar99/sudoku-webapplication
Browse files Browse the repository at this point in the history
Sudoku webapplication
  • Loading branch information
iamrahulmahato authored Oct 5, 2024
2 parents 997ba04 + 7b2e98e commit 9066f82
Show file tree
Hide file tree
Showing 6 changed files with 668 additions and 0 deletions.
Binary file added assets/image/pastime.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,23 @@ <h3 class="card-heading">Wordle Game</h3>
</p>
</div>
</a>

<!-- Sudoku Web Application -->

<a href="./projects/sudoku/index.html" class="card">
<div class="card-cover counter-cover-colour">
<img src="./assets/image/pastime.png" alt="">
</div>
<div class="card-content">
<h3 class="card-heading">Sudoku Game</h3>
<p class="card-description">
A simple and logic based puzzle.
</p>
</div>
</a>

<!----->

<a href="./projects/Text to Speech/index.html" class="card">
<div class="card-cover">
<img src="./projects/Text to Speech/txtsp.png" alt="Text to Speech logo">
Expand All @@ -342,6 +358,7 @@ <h3 class="card-heading">Text to Speech</h3>
<h3 class="card-heading">Image Generator</h3>
<p class="card-description">
Generates Images
>>>>>>> 0ae652653e56b5af027941226d3bae93bd046883
</p>
</div>
</a>
Expand All @@ -361,7 +378,10 @@ <h3 class="card-heading">Github Profile Viewer</h3>
</a>
<!-- END -->

<a href="./projects/Typing%20Speed%20Test/index.html" class="card">
=======
<a href="./projects/Typing Test/index.html" class="card">
>>>>>>> 0bf9e7af6284c3e77de22c51961f3f5b0387071d
<div class="card-cover">
<img src="./assets/image/Typing_test.jpg" alt="Typing test logo">
</div>
Expand Down
Binary file added projects/sudoku/game.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions projects/sudoku/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sudoku Game</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="game.png" type="image/x-icon">
</head>

<body>
<div class="container"></div>
<h1>SUDOKU GAME</h1>
<div id="controls">
<button type="button" class="btn primary" data-action="newGame">New Game</button>
<button type="button" class="btn primary" data-action="solve">Solve</button>
<button type="button" class="btn primary" data-action="validate">Validate</button>
</div>

<script src="script.js"></script>
</body>

</html>
Loading

0 comments on commit 9066f82

Please sign in to comment.