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