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