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