Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/TicTacToe/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neon Tic Tac Toe</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/public/TicTacToe/style.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Rajdhani:wght@600&family=Inter:wght@400;500&display=swap" rel="stylesheet">
</head>
<body data-theme="neon">
Expand Down Expand Up @@ -124,6 +124,6 @@ <h2 id="winnerTitle">Player X Wins!</h2>

<footer class="footer">Neon Tic Tac Toe</footer>

<script src="script.js"></script>
<script src="/public/TicTacToe/script.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion public/TicTacToe/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const hintBtn = document.getElementById("hintBtn");
const undoBtn = document.getElementById("undoBtn");
const historyList = document.getElementById("historyList");
const themeToggleGroup = document.getElementById("themeToggleGroup");
const victorySound = new Audio("victory.mp3");
const victorySound = new Audio("/public/TicTacToe/victory.mp3");

let gameBoard = Array(9).fill("");
let currentPlayer = "X";
Expand Down
Loading