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