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