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