diff --git a/credits/index.html b/credits/index.html
new file mode 100644
index 0000000..db6c331
--- /dev/null
+++ b/credits/index.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+ Tic Tac Toe Game
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/credits/sytles/styles.css b/credits/sytles/styles.css
new file mode 100644
index 0000000..fdeb44d
--- /dev/null
+++ b/credits/sytles/styles.css
@@ -0,0 +1,75 @@
+html, body {
+
+ height: 100%;
+
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+}
+
+body {
+
+ margin: 0;
+ padding: 0;
+
+ background-color: rgb(221, 121, 121);
+}
+
+header {
+
+ display: flex;
+ justify-content: center;
+}
+
+header h1 {
+
+ border-bottom: 2px solid #fff;
+
+ width: 75vw;
+
+ display: flex;
+ justify-content: center;
+
+ margin: 0;
+ padding: 3vh 0px;
+
+ color: #fff;
+
+ font-size: 35pt;
+}
+
+ul {
+
+ padding: 2vh 13.8vw;
+}
+
+li {
+
+ color: #fff;
+ font-size: 17pt;
+}
+
+li a, footer a {
+
+ color: rgb(31, 94, 189)
+}
+
+footer {
+
+ position: absolute;
+
+ height: 7vh;
+ width: 100%;
+
+ padding-left: 2vw;
+ padding-right: 2vw;
+
+ top: calc(100% - 7vh);
+
+ box-sizing: border-box;
+
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+
+ color: #fff;
+ font-size: 13pt;
+}
\ No newline at end of file
diff --git a/index.html b/index.html
index c4a7bac..1f7eac9 100644
--- a/index.html
+++ b/index.html
@@ -4,7 +4,7 @@
- Tic tac toe
+ Tic Tac Toe Game
@@ -69,6 +69,7 @@