I uploaded my own font to the game, in the "text" can be used correctly, now I want to reference in the css, how do I do?
---
"@"font-face
{
font-family: '11':
src: url(fonts/Cubic_11.ttf);
}
#Input
{
outline: none;
border: none;
color: #445469;
background: transparent;
font-size: 32px;
font-family: '11';
}
---
this is my Css code.
Everything works fine except the font
Please tell me what needs to be modified, thank you very much