I'm using create-react-app and prefer not to eject. i imported in index.html file . and give it default font. but its not working.
<style>
@font-face {
font-family: Gumela;
src: url("../src/fonts/*");
}
* {
font-family: "Gumela";
font-weight: normal;
font-size: 20px;
}
body {
margin: 0;
}
</style>