Hi !
I'm working on a Character Sheet and I wanted to import a new font, but it won't work.
Is it because what I want to change is the text inside a textbox ?
Here's the HTML in concern :
<div class='stats_sections'>
<input type="text" class="thingstofill"/>
</div>
And here's the CSS :
@font-face {
font-family: 'Coda Caption';
src: url(https://fonts.googleapis.com/css2?family=Coda+Caption:wght@800&display=swap);
}
.sheet-thingstofill {
background-color:transparent;
margin-top: 120px;
margin-left: 90px;
width: 30%;
font-size: 20rem;
font-family: 'Coda Caption';
color: yellow;
border-color: transparent;
}