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