Skip to content

Commit

Permalink
updated css and js filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
floydferrer committed Oct 5, 2023
1 parent d4f441c commit 310d650
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game</title>
<link rel="stylesheet" href="Memory-Game.css">
<link rel="stylesheet" href="app.css">
</head>

<body>
<h1>Memory Game</h1>
<div class = "box">
<div class="box">
<div class="cards" id="card1"></div>
<div class="cards" id="card2"></div>
<div class="cards" id="card3"></div>
Expand All @@ -19,10 +21,11 @@ <h1>Memory Game</h1>
<div class="cards" id="card8"></div>
</div>
<h2></h2>
<div class = "btn">
<div class="btn">
<button onclick="restart()">Restart Game</button>
<button onclick="reset()">Reset Score</button>
</div>
<script src="Memory-Game.js"></script>
<script src="app.js"></script>
</body>
</html>

</html>

0 comments on commit 310d650

Please sign in to comment.