diff --git a/public/index.html b/public/index.html index 6b28ad5..6db5085 100644 --- a/public/index.html +++ b/public/index.html @@ -10,7 +10,7 @@ content="Web site created using create-react-app" /> diff --git a/public/style.css b/public/style.css index 7a6358b..f933e4d 100644 --- a/public/style.css +++ b/public/style.css @@ -1,3 +1,13 @@ html{ background-color: black; } + +@font-face { + font-family: 'Lovelo Black', monospace; + src: url('Lovelo Black.otf'); +} + +@font-face { + font-family: 'plexifont', monospace; + src: url('plexifont.ttf'); +} diff --git a/src/App.css b/src/App.css index 95bd8fa..2f14d34 100644 --- a/src/App.css +++ b/src/App.css @@ -1,3 +1,13 @@ +@font-face { + font-family: 'Lovelo Black', monospace; + src: url('Lovelo Black.otf'); +} + +@font-face { + font-family: 'plexifont', monospace; + src: url('plexifont.ttf'); +} + .App { } diff --git a/src/components/nameInput.js b/src/components/nameInput.js index 11cda31..16a8887 100644 --- a/src/components/nameInput.js +++ b/src/components/nameInput.js @@ -22,7 +22,7 @@ const NameInput = ({ name, setName }) => { }} > { }; return ( - + {randomElement} It's your turn to play! - Next Player - - + + Next Player + + ); };