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