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