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