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