diff --git a/Games/Go-fish-master/.gitignore b/Games/Go-fish-master/.gitignore
new file mode 100644
index 0000000000..d5cc28426a
--- /dev/null
+++ b/Games/Go-fish-master/.gitignore
@@ -0,0 +1 @@
+audio
diff --git a/Games/Go-fish-master/README.md b/Games/Go-fish-master/README.md
new file mode 100644
index 0000000000..d8115bec54
--- /dev/null
+++ b/Games/Go-fish-master/README.md
@@ -0,0 +1,27 @@
+# Go Fish
+---------
+
+An emulator for the card game 'Go Fish'. Choose how many opponents you want to play against and see who is better!
+
+
+## Rules:
+
+- Each player starts with 7 cards (2/3 players) or 5 cards (4 or more players).
+- Play begins with you, then each of your opponents from left to right.
+- During their turn, each player 'goes fishing' by selecting a value of a card in their hand and another player, in the game this is done by clicking a card and an opponent, then clicking 'Take Turn'. If the selected player has any cards of that value the 'fisher' has made a 'catch'. The selected player must give the 'fisher' all their cards of that value. If the selected player has no cards of that value, the selector has not made a 'catch' and must 'Go Fish!' and draws a new card from the deck.
+- If, during their turn, a player ends up with all 4 cards then they have collected a full set. The player then must immediately declare this and play their set face up, in front of them.
+- If during play a player ends up with no cards in their hand they must draw a card from the deck, rather than 'going fishing' for cards from other people.
+- The winner is the player with the most sets at the end.
+- Once all 13 sets have been completed, play ends.
+
+
+## Tools
+- **HTML**
+- **CSS**
+- **JavaScript**
+- **JQuery**
+- **Atom Development Environment**
+- **SourceTree Source Control**
+
+## Screenshot
+![image](../../assets/images/Go-fish-master.png)
\ No newline at end of file
diff --git a/Games/Go-fish-master/css/master.css b/Games/Go-fish-master/css/master.css
new file mode 100644
index 0000000000..515e4be716
--- /dev/null
+++ b/Games/Go-fish-master/css/master.css
@@ -0,0 +1,105 @@
+/* *{
+ border: 1px solid red;
+} */
+
+
+
+body {
+ font-family: "Open Sans", "Trebuchet MS", Helvetica, sans-serif;
+ margin: 0px;
+ background-color: green;
+ color: white;
+ border: 5px solid gold;
+}
+
+a {
+ text-decoration: none;
+ color: white;
+}
+
+a:visited {
+ color: white;
+}
+
+a:active {
+ color: red;
+}
+
+a:hover {
+ color: gold;
+}
+
+button {
+ height: 30px;
+ width: 100px;
+ border-radius: 10%;
+ background-color: ivory;
+ border-color: ivory;
+ border-style: outset;
+ border-width: 5px;
+}
+
+button:active {
+ border-style: inset;
+}
+
+button:focus {
+ outline: none;
+}
+
+ul {
+ text-align: left;
+ padding-left: 5%;
+ padding-right: 5%;
+}
+
+.center {
+ /* display: block; */
+ text-align: center;
+}
+
+.tracker {
+ padding-left: 5px;
+ padding-right: 5px;
+ width: 200px;
+ margin: 5px;
+ border: 5px ridge black;
+ /* justify-content: space-around; */
+}
+
+.card {
+ width: 100px;
+ /* height: 200px; */
+ border: 1px solid black;
+ justify-content: space-around;
+}
+
+.card:hover {
+ position: relative;
+ top: -10px;
+}
+
+.title {
+ margin-top: 40%;
+}
+
+#cardContainer {
+ /* display: flex; */
+ flex-wrap: nowrap;
+ border: 3px solid gold;
+ border-bottom: 0px;
+}
+
+#opponentContainer {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-around;
+}
+
+.search {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-around;
+ padding-left: 25%;
+ padding-right: 25%;
+}
diff --git a/Games/Go-fish-master/images/cardsjpg/10C.jpg b/Games/Go-fish-master/images/cardsjpg/10C.jpg
new file mode 100644
index 0000000000..9a4580351d
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/10C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/10D.jpg b/Games/Go-fish-master/images/cardsjpg/10D.jpg
new file mode 100644
index 0000000000..69d2a61b8c
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/10D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/10H.jpg b/Games/Go-fish-master/images/cardsjpg/10H.jpg
new file mode 100644
index 0000000000..da4b4acbeb
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/10H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/10S.jpg b/Games/Go-fish-master/images/cardsjpg/10S.jpg
new file mode 100644
index 0000000000..7d61f5b075
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/10S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/2C.jpg b/Games/Go-fish-master/images/cardsjpg/2C.jpg
new file mode 100644
index 0000000000..c59aa5e3d9
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/2C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/2D.jpg b/Games/Go-fish-master/images/cardsjpg/2D.jpg
new file mode 100644
index 0000000000..ed3bdcfb2b
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/2D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/2H.jpg b/Games/Go-fish-master/images/cardsjpg/2H.jpg
new file mode 100644
index 0000000000..000cced39a
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/2H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/2S.jpg b/Games/Go-fish-master/images/cardsjpg/2S.jpg
new file mode 100644
index 0000000000..9652423dcb
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/2S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/3C.jpg b/Games/Go-fish-master/images/cardsjpg/3C.jpg
new file mode 100644
index 0000000000..018ef280a2
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/3C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/3D.jpg b/Games/Go-fish-master/images/cardsjpg/3D.jpg
new file mode 100644
index 0000000000..f50631b55b
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/3D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/3H.jpg b/Games/Go-fish-master/images/cardsjpg/3H.jpg
new file mode 100644
index 0000000000..fe91f05cdc
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/3H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/3S.jpg b/Games/Go-fish-master/images/cardsjpg/3S.jpg
new file mode 100644
index 0000000000..bce70b050f
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/3S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/4C.jpg b/Games/Go-fish-master/images/cardsjpg/4C.jpg
new file mode 100644
index 0000000000..fb9f4df527
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/4C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/4D.jpg b/Games/Go-fish-master/images/cardsjpg/4D.jpg
new file mode 100644
index 0000000000..ece8296879
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/4D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/4H.jpg b/Games/Go-fish-master/images/cardsjpg/4H.jpg
new file mode 100644
index 0000000000..8f1b5a193d
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/4H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/4S.jpg b/Games/Go-fish-master/images/cardsjpg/4S.jpg
new file mode 100644
index 0000000000..9c4c817b05
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/4S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/5C.jpg b/Games/Go-fish-master/images/cardsjpg/5C.jpg
new file mode 100644
index 0000000000..72fb8db48e
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/5C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/5D.jpg b/Games/Go-fish-master/images/cardsjpg/5D.jpg
new file mode 100644
index 0000000000..ebba5f22b9
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/5D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/5H.jpg b/Games/Go-fish-master/images/cardsjpg/5H.jpg
new file mode 100644
index 0000000000..7a125ada67
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/5H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/5S.jpg b/Games/Go-fish-master/images/cardsjpg/5S.jpg
new file mode 100644
index 0000000000..87897a23d9
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/5S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/6C.jpg b/Games/Go-fish-master/images/cardsjpg/6C.jpg
new file mode 100644
index 0000000000..8578b4b639
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/6C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/6D.jpg b/Games/Go-fish-master/images/cardsjpg/6D.jpg
new file mode 100644
index 0000000000..fd6ebc9c21
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/6D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/6H.jpg b/Games/Go-fish-master/images/cardsjpg/6H.jpg
new file mode 100644
index 0000000000..87c0e89d9b
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/6H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/6S.jpg b/Games/Go-fish-master/images/cardsjpg/6S.jpg
new file mode 100644
index 0000000000..33ac347eee
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/6S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/7C.jpg b/Games/Go-fish-master/images/cardsjpg/7C.jpg
new file mode 100644
index 0000000000..bb4777d815
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/7C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/7D.jpg b/Games/Go-fish-master/images/cardsjpg/7D.jpg
new file mode 100644
index 0000000000..9e271363c4
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/7D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/7H.jpg b/Games/Go-fish-master/images/cardsjpg/7H.jpg
new file mode 100644
index 0000000000..beb036895a
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/7H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/7S.jpg b/Games/Go-fish-master/images/cardsjpg/7S.jpg
new file mode 100644
index 0000000000..957bbf7fd0
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/7S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/8C.jpg b/Games/Go-fish-master/images/cardsjpg/8C.jpg
new file mode 100644
index 0000000000..41a7a6b46f
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/8C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/8D.jpg b/Games/Go-fish-master/images/cardsjpg/8D.jpg
new file mode 100644
index 0000000000..b9401f73b8
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/8D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/8H.jpg b/Games/Go-fish-master/images/cardsjpg/8H.jpg
new file mode 100644
index 0000000000..02e5040050
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/8H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/8S.jpg b/Games/Go-fish-master/images/cardsjpg/8S.jpg
new file mode 100644
index 0000000000..28ade6226e
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/8S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/9C.jpg b/Games/Go-fish-master/images/cardsjpg/9C.jpg
new file mode 100644
index 0000000000..865cbc6b74
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/9C.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/9D.jpg b/Games/Go-fish-master/images/cardsjpg/9D.jpg
new file mode 100644
index 0000000000..85a17c4efb
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/9D.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/9H.jpg b/Games/Go-fish-master/images/cardsjpg/9H.jpg
new file mode 100644
index 0000000000..f1e177f7fc
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/9H.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/9S.jpg b/Games/Go-fish-master/images/cardsjpg/9S.jpg
new file mode 100644
index 0000000000..f5590fddbd
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/9S.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/AC.jpg b/Games/Go-fish-master/images/cardsjpg/AC.jpg
new file mode 100644
index 0000000000..24750aacea
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/AC.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/AD.jpg b/Games/Go-fish-master/images/cardsjpg/AD.jpg
new file mode 100644
index 0000000000..5a1b0e9a4c
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/AD.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/AH.jpg b/Games/Go-fish-master/images/cardsjpg/AH.jpg
new file mode 100644
index 0000000000..ffd1372ce4
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/AH.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/AS.jpg b/Games/Go-fish-master/images/cardsjpg/AS.jpg
new file mode 100644
index 0000000000..ff4ff48c24
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/AS.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/JC.jpg b/Games/Go-fish-master/images/cardsjpg/JC.jpg
new file mode 100644
index 0000000000..19e16133a8
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/JC.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/JD.jpg b/Games/Go-fish-master/images/cardsjpg/JD.jpg
new file mode 100644
index 0000000000..d6ae10a12a
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/JD.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/JH.jpg b/Games/Go-fish-master/images/cardsjpg/JH.jpg
new file mode 100644
index 0000000000..6fabafed00
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/JH.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/JS.jpg b/Games/Go-fish-master/images/cardsjpg/JS.jpg
new file mode 100644
index 0000000000..070a1a00ce
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/JS.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/KC.jpg b/Games/Go-fish-master/images/cardsjpg/KC.jpg
new file mode 100644
index 0000000000..004a0a8a03
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/KC.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/KD.jpg b/Games/Go-fish-master/images/cardsjpg/KD.jpg
new file mode 100644
index 0000000000..94138fd6dc
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/KD.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/KH.jpg b/Games/Go-fish-master/images/cardsjpg/KH.jpg
new file mode 100644
index 0000000000..62073ac8d4
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/KH.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/KS.jpg b/Games/Go-fish-master/images/cardsjpg/KS.jpg
new file mode 100644
index 0000000000..d3e9da74a3
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/KS.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/QC.jpg b/Games/Go-fish-master/images/cardsjpg/QC.jpg
new file mode 100644
index 0000000000..0ad7d4d277
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/QC.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/QD.jpg b/Games/Go-fish-master/images/cardsjpg/QD.jpg
new file mode 100644
index 0000000000..f385eab72e
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/QD.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/QH.jpg b/Games/Go-fish-master/images/cardsjpg/QH.jpg
new file mode 100644
index 0000000000..3080de265e
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/QH.jpg differ
diff --git a/Games/Go-fish-master/images/cardsjpg/QS.jpg b/Games/Go-fish-master/images/cardsjpg/QS.jpg
new file mode 100644
index 0000000000..9c8501e755
Binary files /dev/null and b/Games/Go-fish-master/images/cardsjpg/QS.jpg differ
diff --git a/Games/Go-fish-master/index.html b/Games/Go-fish-master/index.html
new file mode 100644
index 0000000000..4198f51a95
--- /dev/null
+++ b/Games/Go-fish-master/index.html
@@ -0,0 +1,19 @@
+
+
+
The aim of the game is to collect the most 'tricks' or 'sets'.
+
To begin, press 'Start Game' and enter the number of players (including yoruself) that you want to play.
+
+
+
Each player starts with 7 cards (2/3 players) or 5 cards (4 or more players).
+
Play runs clockwise, starting with the player to the dealer's left.
+
During their turn, each player 'goes fishing' by selecting a value of a card in their hand and another player, in the game this is done by clicking a card and an opponent, then clicking 'Take Turn'. If the selected player has any cards of that value the 'fisher' has made a 'catch'. The selected player must give the 'fisher' all their cards of that value. If the selected player has no cards of that value, the selector has not made a 'catch' and must 'Go Fish!' and draws a new card from the deck.
+
If, during their turn, a player ends up with all 4 cards then they have collected a full set. The player then must immediately declare this and play their set face up, in front of them.
+
If during play a player ends up with no cards in their hand they must draw a card from the deck, rather than 'going fishing' for cards from other people.
+
The winner is the player with the most sets at the end.
+
Once all 13 sets have been completed, play ends.
+
+
+
+
+
+
+
+
diff --git a/Games/Go-fish-master/pages/main.html b/Games/Go-fish-master/pages/main.html
new file mode 100644
index 0000000000..8afc026a27
--- /dev/null
+++ b/Games/Go-fish-master/pages/main.html
@@ -0,0 +1,64 @@
+
+
+
+
+ Go Fish
+
+
+
+
+
Go Fish!
+
+
+
Fishing For:
+
+
+
+
Fishing From:
+
+
+
+
Sets:
+
0
+
+
+
Cards Remaining:
+
0
+
+
+
Here is where you will see a breakdown of your last turn
+
+
+
+
+
+
Your Opponents
+
+
+
+
+
+
+
Your Cards
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/README.md b/README.md
index 2c1c8311a0..9998b725b9 100644
--- a/README.md
+++ b/README.md
@@ -790,10 +790,9 @@ This repository also provides one such platforms where contributers come over an
|[Dot_Box_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dot_Box_Game)|
| [Cosmic_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Cosmic_Blast) |
|[Mole](https://github.com/taneeshaa15/GameZone/tree/main/Games/Mole)|
+| [Go-fish-master](https://github.com/kunjgit/GameZone/tree/main/Games/Go-fish-master) |
|[Pottery-Game](https://github.com/kunjgit/GameZone/tree/main/Games/Pottery-Game)|
-
- | [Ganesh QR Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) |
-
+ | [Ganesh_QR_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Ganesh_QR_Maker) |
|[Wheel_of_Fortunes](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Wheel_of_Fortunes)|
|[Tic-tac-toe](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tic-tac-toe)|
diff --git a/assets/images/Go-fish-master.png b/assets/images/Go-fish-master.png
new file mode 100644
index 0000000000..c8aa8e9b2d
Binary files /dev/null and b/assets/images/Go-fish-master.png differ