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