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