Initial Commit (first version of Minesweeper.js)
This commit is contained in:
27
index.html
Normal file
27
index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
<style>
|
||||
html {
|
||||
overflow: hidden;
|
||||
}
|
||||
#minesweeper-overlay, #minesweeper-overlay2 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body style="margin: 0">
|
||||
|
||||
<canvas id="minesweeper-game" width="100" height="100"></canvas>
|
||||
<canvas id="minesweeper-overlay" width="100" height="100"></canvas>
|
||||
<canvas id="minesweeper-overlay2" width="100" height="100"></canvas>
|
||||
|
||||
<script type="text/javascript" src="animations/click.js"></script>
|
||||
<script type="text/javascript" src="animations/victory.js"></script>
|
||||
<script type="text/javascript" src="minesweeper.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user