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