Use on the webTotal Use [ 5270 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f9e4a2d94e72df94aacb542e4d6fa2dc?family=Faxnes" 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/f9e4a2d94e72df94aacb542e4d6fa2dc?family=Faxnes);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Faxnes";
src: url("https://db.onlinewebfonts.com/t/f9e4a2d94e72df94aacb542e4d6fa2dc.eot");
src: url("https://db.onlinewebfonts.com/t/f9e4a2d94e72df94aacb542e4d6fa2dc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f9e4a2d94e72df94aacb542e4d6fa2dc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f9e4a2d94e72df94aacb542e4d6fa2dc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f9e4a2d94e72df94aacb542e4d6fa2dc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f9e4a2d94e72df94aacb542e4d6fa2dc.svg#Faxnes")format("svg");
}
2CSS rules to specify fonts
font-family: "Faxnes";