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