mirror of
https://github.com/FranP-code/Tic-Tac-Toe-Game.git
synced 2025-10-12 23:52:39 +00:00
23 lines
893 B
HTML
23 lines
893 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Tic Tac Toe Game</title>
|
|
<link rel="stylesheet" href="./sytles/styles.css">
|
|
</head>
|
|
<body>
|
|
<header><h1>Credits</h1></header>
|
|
|
|
<ul>
|
|
<li>Animations: <a href="https://animate.style">Animate.css</a></li>
|
|
<li>Emoji Picker: <a href="https://www.npmjs.com/package/emoji-picker-element">emoji-picker-element</a></li>
|
|
<li>Idea: <a href="https://www.theodinproject.com/paths/full-stack-javascript/courses/javascript/lessons/tic-tac-toe">The Odin Project</a></li>
|
|
</ul>
|
|
<footer>
|
|
<p>Made with 💓 by <a href="http://franp.xyz" target="_blank">Francisco Pessano</a></p>
|
|
<a href="../">Back to the Game</a>
|
|
</footer>
|
|
</body>
|
|
</html> |