Use on the webTotal Use [ 6894 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/33e31f5346a98a8b6009d46c117b02ec?family=Evon+Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/33e31f5346a98a8b6009d46c117b02ec?family=Evon+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Evon Regular";
src: url("https://db.onlinewebfonts.com/t/33e31f5346a98a8b6009d46c117b02ec.eot");
src: url("https://db.onlinewebfonts.com/t/33e31f5346a98a8b6009d46c117b02ec.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/33e31f5346a98a8b6009d46c117b02ec.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/33e31f5346a98a8b6009d46c117b02ec.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/33e31f5346a98a8b6009d46c117b02ec.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/33e31f5346a98a8b6009d46c117b02ec.svg#Evon Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Evon Regular";