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