-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c063dc
commit 5e4d97c
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content="Sudoku game that is built on Javascript"> | ||
<meta name="author" content="Deniss Dubinin"> | ||
<title>Javascript Sudoku | © Deniss Dubinin</title> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/denissdubinin/javascript-sudoku@latest/dist/sudoku.min.css"> | ||
<link rel="icon" href="assets/favicon.ico"> | ||
</head> | ||
|
||
<body> | ||
<style>#confettiCanvas {pointer-events: none;}</style> | ||
<a href="https://github.com/denissdubinin/javascript-sudoku"> | ||
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 99;" | ||
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"> | ||
</a> | ||
<main role="main"> | ||
<div class="container"> | ||
<div class="mt-3 mb-5"> | ||
<h1 class="text-primary text-center">SUDOKU</h1> | ||
<div id="sudoku-example"></div> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
<footer class="text-muted"> | ||
<div class="container text-center"> | ||
<p> | ||
<small>Made by <b><a href="https://github.com/denissdubinin" target="-_blank">@Deniss Dubinin</a></b> | © 2018 </small> | ||
</p> | ||
</div> | ||
</footer> | ||
|
||
<script src="https://cdn.jsdelivr.net/gh/jquery/[email protected]/dist/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/denissdubinin/javascript-sudoku@latest/dist/sudoku.min.js"></script> | ||
<script src="assets/jquery.confetti.min.js"></script> | ||
|
||
<script> | ||
$(document).ready(function() { | ||
$('#sudoku-example').Sudoku({ | ||
markWrongCellsOnFly: true | ||
}); | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |