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