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