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