diff --git a/index.html b/index.html
index 9044034..6eff1d4 100644
--- a/index.html
+++ b/index.html
@@ -19,7 +19,7 @@ function updateEvent() {
theDeck.innerHTML = "
"+window.deck.length+"
";
window.hand.forEach(function (card) {
var currentCard = elementPlace("#hand",null,"card","li");
- currentCard.innerText = card;
+ currentCard.innerHTML = card;
});
}