diff --git a/EN/hagmangame_en.html b/EN/hagmangame_en.html
index f12e47a..5ecc8f7 100644
--- a/EN/hagmangame_en.html
+++ b/EN/hagmangame_en.html
@@ -1,5 +1,4 @@
Hangman Game
-

Kaybettin!
Doğru kelime:kelime
-
+
+
+
+
Select Difficulty :
+
+
+
+
+
+for(let e=97;e<=122;e++){const btn=document.createElement("button");btn.innerText=String.fromCharCode(e);const char = String.fromCharCode(e);btn.setAttribute("aria-label", `Letter ${char}`);keyboardDiv.appendChild(btn);btn.addEventListener("click",()=>initGame(btn,String.fromCharCode(e)));}getRandomWord();playAgainBtn.addEventListener("click",getRandomWord);